/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f5f5f5;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
}

/* Container for Content */
container {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 40px;
    width: 100%;
    max-width: 400px;
}

/* Welcome Note */
welcome-note {
    font-size: 24px;
    color: #333;
    margin-bottom: 30px; /* Increased space for buttons */
}

/* Buttons Container */
button-container {
    margin-top: 20px; /* Space above buttons */
}

/* Buttons */
button {
    display: inline-block;
    background-color:grey;
    color: #ffffff;
    border: none;
    padding: 15px 25px;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    text-decoration: none;
    margin: 10px;
    transition: background-color 0.3s, transform 0.2s;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

button:hover {
    background-color: blue;
    transform: scale(1.05);

}

button:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(66, 133, 244, 0.3);
}

button:active {
    background: linear-gradient(135deg, #2a56c6, #357ae8);
}
