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

body {
  font-family: Arial, Helvetica, sans-serif;
  background: rgb(255, 231, 250);
  color: black;
}

main {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

.links {
  list-style: none;
  text-align: center;
}

.links li {
  margin: 0.75rem 0;
}

.links a {
  text-decoration: none;
  color: black;
  font-size: 1.25rem;
}

.links a:hover {
  text-decoration: underline;
}
