body {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    background-color: #f9f9f9;
    color: #333;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 600px;
    margin: 10px auto;
    padding: 10px;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    text-align: center;  /* Keep the content centered */
}

h1 {
    font-size: 28px;
    margin-bottom: 10px;
    color: #2c3e50;
}

/* Style for each list item */
li a {
    font-weight: bold;  /* Make the links inside each item bold */
}
li {
    background-color: #f0f8ff;  /* Light background */
    margin: 6px 0;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    display: inline-block; /* Keeps the items tight */
    width: 80%;  /* Or adjust to your liking */
    padding: 6px 12px;
    font-size: 16px;
    cursor: pointer;
}

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

a {
    text-decoration: none;
    font-size: 14px;
    color: #007acc;
    transition: color 0.3s ease;
    line-height: 1.5;
}

a:hover {
    color: #005fa3;
}

@media (max-width: 600px) {
  .container {
    margin: 10px 10px;
    padding: 10px;
    border-radius: 8px;
  }

  h1 {
    font-size: 22px;
    margin-bottom: 20px;
  }

  li {
    width: 100%; /* Full width on smaller devices */
    font-size: 16px;
    padding: 3px 12px;
  }

  a {
    font-size: 16px;
  }
}
