/* Utilisation avec Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Gruppo&family=Orbitron:wght@400..900&display=swap" rel="stylesheet');

body{
    margin: 0;
    padding: 0;
    background: radial-gradient(ellipse 90% 80% at 50% 100%, #7C1DB7 10%, #000000 70%); 
}

@media(max-width:500px){
    main{
        height: 90vh;
    }
}


header{
    display: flex;
    justify-content: center;
}

#logo{
    width: 30vw;
    margin-top: 5vh;
    transition: 1s;
}

main{
    display: flex;
    flex-direction: column;
    justify-items: center;
}

h1{
    color: white;
    font-family: "Gruppo", sans-serif;
    text-align: center;
    font-size: 3rem;
    margin: 7vh 0 2vh 0 ;
}

@media(max-width:650px){

    h1{
        font-size: 7vw;
    }
}

@media(min-width:1300px){

    h1{
        font-size: 6vH;
    }
}

section{
    display: flex;
    flex-direction: column;
    text-align: center;
    font-family: "Gruppo", sans-serif;
    font-size: 2rem;
    font-weight: 300;
    letter-spacing: 0.5px; /* Optionnel pour le style condensé */
    color: white;
    margin-top: 10vh;
    margin-left: 2vw;
    margin-right: 2vw;
    transition: 1s;
}

@media(min-width:2500px){

    section{
        font-size: 2.5rem;        
    }
}



nav{
    margin: 15vh 0 15vh 0 ;
    display: flex;
    justify-content: space-evenly;
}

.bouton{
    font-family: "Orbitron", sans-serif;
    font-size: x-large;
    text-align: center;
    background-color:black ;
    border: solid #ae40f2 3px ;
    border-radius: 100px;
    color: white;
    text-decoration: none;
    padding: 2vh 3vw 2vh 3vw;   
    transition: 1s;   
}

.bouton:hover{
    color: black;
    box-shadow: 0px 0px 20px white;
    border: solid #dac5e8 3px ;
    background-color: rgb(198, 29, 232);
    transition: 1s;
}

@media(min-width:1300px){

    .bouton{
        font-size: xx-large;
    }
}



/* ===========================================================================\\RESPONSIVE//================================================================================ */


@media(max-width:650px){

    #logo{
        width: 60vw;
        margin-top: 3vh;
        transition: 1s;
    }

    section{
        display: flex;
        flex-direction: column;
        text-align: center;
        font-family: "Gruppo", sans-serif;
        font-size: 4vw;
        font-weight: 300;
        letter-spacing: 0.5px; /* Optionnel pour le style condensé */
        color: white;
        margin-top: 5vh;
        margin-left: 2vw;
        margin-right: 2vw;
        transition: 1s;
    }

    nav{
        margin-top: 5vh;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .bouton{
        font-family: "Orbitron", sans-serif;
        font-size: 5vw;
        text-align: center;
        width: 50vw;
        background-color:black ;
        border: solid #9438ce 2px ;
        border-radius: 100px;
        color: white;
        text-decoration: none;
        margin: 1vh;
        padding: 1.2vw;
    }


}

