
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "SF Pro Text", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: white;
}

html,
body {
  height: 100%;
}

body {
  background-color: rgb(22,23,29);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 40px;
}

/* Heading */
h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  letter-spacing: 1px;
  text-decoration: underline solid #00ff9c 5px;
  text-underline-offset: 10px;
}

/* List container */
ul {
  width: 420px;
  max-width: 90%;
}

/* List items */
li {
  list-style: none;
  margin-bottom: 14px;
}

/* Links as cards */
a {
  display: block;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.3s ease;
}

/* Hover effect */
a:hover {
  background: #00ff9c;
  color: #000;
  transform: translateX(8px);
  box-shadow: 0 8px 20px rgba(0, 255, 156, 0.3);
}

@media (max-width:320px){
  h2 {
  font-size: 1.5rem;
}
}
