/*
Style adapté pour le mobile -------------------------------------------------------------------------------------------------
*/

/* Contenu mobile, censé être caché pour un ordinateur */
.mobile-content {
    min-height: 30vh;
}
.mobile-content h1 {
    padding-top: 20vh;
    width: 100%;
    text-align: center;
    color: white;
    margin: 0;
}

/*
Cercles de l'en-tête sur mobile -------------------------------------------------------------------------------------------------
*/

[class^="circle-"] {
    border-radius: 50%;
    opacity: 0.1;
    aspect-ratio: 1/1;
}

.circle-1 {
    position: absolute;
    border-color: white;
    border-style: solid;

    /* Données modifiables pour le desktop */
    top: 4vh;
    left: -10vh;
    border-width: 2vh;
    width: auto;
    height: 18vh;
}

.circle-2 {
    position: absolute;
    background-color: white;

    /* Données modifiables pour le desktop */
    top: 8vh;
    left: 40vw;
    width: auto;
    height: 5vh;
}

.circle-3 {
    position: absolute;
    background-color: white;

    /* Données modifiables pour le desktop */
    top: -15vh;
    right: -5vh;
    width: auto;
    height: 25vh;
}