@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700;800&display=swap");

body {
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: rgb(55, 53, 47);
}

h1 {
  text-align: center;
}

h1 span {
  font-size: 0.5em;
  font-weight: 500;
}

ul {
  padding: 0;
}

li {
  background-color: #ff6b66;
  border-radius: 5px;
  padding: 8px;
  list-style: none;
  margin: 8px 0;
  box-sizing: border-box;
  cursor: pointer;
  font-size: 1.5em;
}

li:hover {
  background-color: #ffa9a7;
}

li a {
  text-decoration: none;
  color: rgb(55, 53, 47);
  font-weight: 500;
  font-size: 1em;
}

a {
  color: rgb(55, 53, 47);
  font-weight: 400;
}

@media screen and (max-width: 767px) {
  body {
    font-size: 0.8em;
    max-width: 100dvw;
  }
}
