body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    font-family: 'Montserrat', sans-serif;
    color: #ffffff; /* Testo bianco */
    
    /* Sfondo a gradiente con fallback */
    background-color: #0c1427; /* Per browser che non supportano i gradienti */
    background: linear-gradient(to bottom, #2986cc, #16537e); /* Gradiente da blu scuro a nero */
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 20px;
}

header {
    margin-bottom: 40px;
    text-align: center;
}

.logo {
    max-width: 300px;
    height: auto;
}

.links-container {
    width: 100%;
    max-width: 680px;
}

.link-button {
    display: block;
    background-color: transparent;
    border: 2px solid #ffffff;
    color: #ffffff;
    padding: 15px 30px;
    margin: 15px 0;
    text-align: center;
    text-decoration: none;
    font-weight: bold;
    border-radius: 8px;
    transition: background-color 0.3s, color 0.3s;
}

.link-button:hover {
    background-color: #ffffff;
    color: #0c1427;
}

/* Media Query per la responsività su mobile */
@media (max-width: 768px) {
    .container {
        justify-content: flex-start;
        padding-top: 60px;
    }

    .logo {
        max-width: 120px;
    }
}