* {
  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;
}

nav a:nth-child(2) {
  text-decoration: underline;
}

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

main p {
  max-width: 80%;
  text-align: center;
}

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;
}