body, html {
    height: 100%;
    width: 100%;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #0d1f2b; /* Couleur de fond la plus sombre */
    color: #f0fafc; /* Couleur de texte la plus claire */
    font-family: Cabin;
}

.container {
    text-align: center;
    flex-direction: column;
    display: flex;
    /*justify-content: space-between;*/
    height: 80%;
}

.logo {
    max-width: 60%;
    height: auto;
    margin: auto;
    margin-bottom: 1%;
}

#title {
    font-size: 3em;
}

#subtitle {
    font-size: 2em;
}
#happening {
    margin-bottom: auto;
}

.footer {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    font-size: 0.8em;
    align-items: center;
    height: 10%;
}

.footertext {
    margin-top: auto;
    text-align: center;
    width: 100%;
}

/* Exemple d'utilisation de la couleur intermédiaire */
a, a:hover {
    color: #5184a3;
}

