/* Style for the specific container, not affecting the entire body */
.button-page {
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* Align content to the top */
    align-items: center; /* Center the buttons horizontally */
    height: 100vh;
    margin: 0;
    padding-top: 20px; /* Add some padding to the top */
}

.button-container {
    display: flex;
    flex-direction: column; /* Stack buttons vertically */
    gap: 20px; /* Space between buttons */
    padding-bottom: 20px;
}

.button-main,.button-main2 {
    padding: 20px 40px;
    font-size: 24px;
    width:300px;
    font-weight: bold;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.button-main:hover, .button-main2:hover {
    transform: scale(1.1);
}

.button-main {
    background-color: #2ecc71;
}

.button-main:hover {
    background-color: #27ae60;
}

.button-main2 {
    background-color: #0e2f56; /* 3498db */
}

.button-main2:hover {
    background-color: #2980b9;
}