* {
    margin: 0;
    padding: 0;
    line-height: 1.6;
}



#hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.849);
    height: 100dvh;
}

h1 {
    color: antiquewhite;
    letter-spacing: 2px;
}
p {
    color: antiquewhite;
    letter-spacing: 1px;
}

h1, p {
    text-align: center;
}

p > a {
    text-decoration: underline;
    color: aquamarine;
}

@media (max-width: 768px) {
  body {
    font-size: 14px;
  }

  h1 {
    font-size: 1.2rem;
  }

  p {
    font-size: 0.95rem;
  }
}
