html, body {
  height: 100%;
}

* {
  margin: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Manrope', sans-serif;
  font-size: 1em;
  background-color: rgba(252, 227, 197, 0.5);
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

h1 {
  font-size: 3.5em;
}

p {
  font-size: 1em;
}

a {
  text-decoration: none;
}

header,
footer {
  background-color:#a19482;
  padding: 20px 40px;
}

nav {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  gap: 30px;
}

footer {
  display: flex;
  align-items: center;
}

nav a,
footer a {
  color: white;
}

a:hover {
  text-decoration: underline;
}

footer p {
  color: white;
}

@media screen and (max-width: 900px) {
  header,
  footer {
    padding: 20px 25px;
  }
  nav {
    gap: 20px;
  }
}

@media screen and (max-width: 600px) {
  header,
  footer {
    padding: 15px 20px;
  }
  nav {
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
  }

  h1 {
    font-size: 2.2em;
  }

  h2 {
    font-size: 1.3em;
  }

  p {
    font-size: 0.95em;
  }
}