body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #1b1b1b;
    color: #ffffff;
}

.container {
    text-align: center;
    padding: 50px 20px;
}

.title {
    font-size: 2.5em;
    margin-bottom: 30px;
}

.button-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px; /* Space between buttons */
}

.button {
    padding: 15px 30px; /* Adjust padding for buttons */
    background-color: #005eff; /* Button background color */
    color: white; /* Button text color */
    text-decoration: none; /* Remove underline from links */
    border-radius: 5px; /* Rounded corners */
    transition: background-color 0.3s ease; /* Smooth transition for hover effect */
    font-size: 1.2em; /* Font size for buttons */
}

.button:hover {
    background-color: #0041b2; /* Darker shade for hover effect */
}
