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

body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background-color: #d1d0d0;
}

h1 {
  margin-bottom: 10px;
  color: rgb(152, 6, 219);
}

a {
  text-decoration: none;
  font-size: 20px;
  color: black;
}

a:hover {
  color: rgb(152, 6, 219);
}

ul li {
  list-style: none;
}
