/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: #333;
  padding: 30px 0px;
  background-color: #f8f9fa;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Main container */
main {
  background: white;
  padding: 3rem;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  min-width: 300px;
  max-width: 500px;
}

/* List styles */
ul {
  list-style: none;
}

li {
  margin-bottom: 1rem;
}

li:last-child {
  margin-bottom: 0;
}

/* Link styles */
a {
  display: block;
  padding: 1rem 1.5rem;
  text-decoration: none;
  color: #2563eb;
  background-color: #f1f5f9;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  font-weight: 500;
  transition: all 0.2s ease;
}

a:hover {
  background-color: #2563eb;
  color: white;
  border-color: #2563eb;
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(37, 99, 235, 0.2);
}

a:active {
  transform: translateY(0);
}

/* Responsive design */
@media (max-width: 768px) {
  main {
    margin: 1rem;
    padding: 2rem;
  }

  a {
    padding: 0.875rem 1.25rem;
    font-size: 0.95rem;
  }
}
