/* General page styling */
body {
    font-family: 'Comic Sans MS', 'Poppins', sans-serif;
    background-color: #bde0fe;
    color: #333;
    text-align: center;
    margin: 0;
    padding: 0;
}

/* Center header and logo */
.hero {
    text-align: center;
    margin-top: 30px;
}

.logo {
    display: block;
    margin: 0 auto 10px;
    width: 300px;
    height: auto;
}

/* Buttons section */
.buttons {
    display: flex;
    flex-direction: column; 
    align-items: center;   
    gap: 20px;             
    margin-top: 40px;
}

/* Actual button styling */
.button {
    display: inline-block;
    background-color: #ffcb77;
    color: #1d3557;
    padding: 15px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2em;
    box-shadow: 3px 4px 6px rgba(0, 0, 0, 0.2);
    transition: all 0.2s ease-in-out;
}

.button:hover {
    background-color: #ffd6a5;
    transform: scale(1.05);
}

/* Footer styling */
footer {
    margin-top: 50px;
    background-color: #fefae0;
    padding: 15px;
    font-size: 0.9em;
    border-top: 3px solid #f5a623;
}
