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

.container {
  display: flex;
  flex-direction: column;
  height: 100vh;
  width: 100vw;
  align-items: center;
  justify-content: center;
}

.container h1 {
  text-transform: capitalize;
  font-size: 4rem;
}

.container ul {
  list-style: none;
  font-size: 2rem;
  margin: 2rem;
}

.container ul li::before {
  content: "💎";
}

.container ul li a {
  text-decoration: none;
}

.container ul li a:hover {
  color: blue;
}
