* {
  margin: 0;
  font-family: 'Roboto', sans-serif;
  color: oklch(.9 0 0);
  text-decoration: none;
}

body {
  width: 100%;
  height: 100vh;
  background-color: oklch(.1 0 0);
}

nav {
  height: 2rem;
  width: calc(100% - 2rem);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2%;
  padding: 1rem;
  font-size: x-large;
  background-color: oklch(.2 0 0);
  border-bottom-left-radius: 1rem;
  border-bottom-right-radius: 1rem;
}

main {
  display: grid;
  place-items: center;
  height: calc(100vh - 3rem - 4rem);
  font-size: 2rem;
}

#container {
  width: 75%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (orientation: portrait) {
  #container {
    width: 95%;
  }
}

#container a {
  text-decoration: underline;
}

.contact {
  color: oklch(.7 0 0);
}

.contact a {
  color: oklch(.7 0 0);
  text-decoration: underline;
}

footer {
  width: 100%;
  height: 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2%;
  background-color: oklch(.2 0 0);
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
}

footer a:nth-child(1) {
  text-decoration: underline;
}