body {
  font-family: "Montserrat", sans-serif;
  margin: 1.5rem 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  min-height: calc(100vh - 3rem);
  background-color: #fffcfc;
  color: #333;
  align-items: center;
  font-size: 1.25rem;
}

body > * {
  max-width: 600px;
  width: 90%;
}

main {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.logo {
  font-family: "Rakkas", serif;
  font-size: 2rem;
  font-weight: bold;
}

.greetings {
  font-size: 1rem;
  font-weight: 300;
}

.about {
  font-size: 2.45rem;
}

a {
  color: inherit;
  text-decoration: none;
}

.highlight {
  text-decoration: underline;
}