body {
    font-family: Arial, sans-serif;
    background: linear-gradient(to right, #2c3e50, #4ca1af);
    color: #fff;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
}

.container {
    background: rgba(0, 0, 0, 0.5);
    padding: 20px 40px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

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

p {
    margin-bottom: 20px;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

li {
    margin: 0; /* Remove the margin between list items */
    width: 100%;
}

a {
    display: inline-block;
    width: 200px; /* Set a fixed width for all buttons */
    background-color: #4ca1af;
    color: #fff;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    font-weight: bold;
    text-align: center;
    margin: 5px 0; /* Add a small margin to ensure no overlap */
}

a:hover {
    background-color: #2c3e50;
    text-decoration: none;
}

.prompt {
    margin-top: 20px;
    font-size: 1em;
    color: #ddd;
}
