body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.container {
    text-align: center;
}

h1 {
    color: #333;
    margin-bottom: 30px;
}

.button-container {
    display: flex;
    flex-direction: column;
    gap: 20px; /* Space between buttons */
}

.big-button {
    display: inline-block;
    padding: 20px 40px;
    font-size: 24px;
    color: white;
    background-color: #007bff;
    border: none;
    border-radius: 5px;
    text-decoration: none; /* Remove underline from links */
    transition: background-color 0.3s;
}

.big-button:hover {
    background-color: #0056b3; /* Darker shade on hover */
}
