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

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 20px;
  font-family: "Inter", sans-serif;
  background-color: #ffffff;
  color: #1a1a1a;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

main {
  width: 100%;
  max-width: 500px;
  padding: 40px 30px;
}

h1 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

p {
  margin-top: 0;
  color: #666;
  font-size: 1.1rem;
}

ul {
  list-style: none;
  padding: 0;
  margin-top: 2.5rem;
}

li {
  margin-bottom: 1.5rem;
}

a {
  text-decoration: none;
  color: #666;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
}

a i {
  margin-right: 15px;
  width: 20px;
  text-align: center;
  font-size: 1.2rem;
}

a:hover {
  color: #000;
  transform: translateX(5px);
}

@media (max-width: 480px) {
  body {
    padding: 15px;
  }

  main {
    padding: 30px 20px;
  }

  h1 {
    font-size: 1.75rem;
  }

  p {
    font-size: 1rem;
  }

  a {
    font-size: 1rem;
  }
}
