@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  padding: env(safe-area-inset-top, 0px) env(safe-area-inset-right, 0px)
    env(safe-area-inset-bottom, 0px) env(safe-area-inset-left, 0px);
  font-family: Roboto, sans-serif;
  line-height: 1.6;
  height: 100svh;
  height: --webkit-fill-available;
}

.container {
  width: 95%;
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #333;
  color: #b9a189;
  padding: 1rem 2rem;
  border-radius: 30px 0px 0px 30px;
  margin-top: 10px;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 1rem;
}

nav a {
  color: #d8c0a8;
  text-decoration: none;
}

footer a {
  color: #575757;
  text-decoration: none;
}

main {
  flex: 1;
  padding: 2rem;
  width: 100%;
  /* max-width: 90%; */
  margin: 0 auto;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

footer {
  background-color: #b9a1895c;
  text-align: center;
  padding: 1rem;
  font-size: 0.9rem;
  color: #666;
  border-radius: 30px 30px 0px 0px;
  margin-bottom: 1rem;
}
