* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
/* FONTS */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap");

body {
  font-family: "Inter", sans-serif;
}

main {
  width: 100%;
  padding: 1rem;
  height: 100vh;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
main h1 {
  font-size: 3rem;
  margin-bottom: 2rem;
  max-width: 80%;
}
#hand {
  position: absolute;
  transform: translate(-50%, -50%);
  font-size: 3.5rem;
  pointer-events: none;
}
main ul {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
  display: flex;
  gap: 1rem;
  max-width: 80%;
}
main ul li {
  list-style: none;
}
main ul li a {
  text-decoration: none;
  color: black;
  font-size: 2rem;
}
main ul li a:hover {
  text-decoration: underline;
}
@media screen and (min-width: 768px) {
  main h1 {
    font-size: 4.5rem;
  }
  main ul {
    justify-content: flex-start;
  }
}
