@media only screen and (max-width: 600px) {
    main {
        max-width: 100%;
        display: flex;
        flex-direction: column;
    }
    .header{
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--white);
        padding: 10px;
        position: fixed;
        z-index: 9;
    }
    .header-container{
        width: 90%;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 20px;
    }
    .nav-menu{
        width: 100%;
    }
    .navbar{
        display: flex;
    }
    .profil{
        width: 100%;
    }
    .main{
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .container{
        width: calc(100% - 1rem);
        display: flex;
        flex-direction: column;
        align-items: center;
        margin: 0 auto;
    }
    
}

@media screen and (max-width: 380px) {
    .accueil{
        width: 100%;
    }
    .glass-effet{ 
        width: calc(100% - 2rem);
        height: 350px;
    }
}