*{
    margin: 0; padding: 0;

    -moz-user-select: none; /* Firefox */
    -webkit-user-select: none; /* Chrome, Safari, Opéra depuis la version 15 */
    -ms-user-select: none; /* Internet explorer depuis la version 10 et Edge */
    user-select: none; /* Propriété standard */
}

@font-face{
    font-family: "Avenir Next Pro Bold";
    src: url("./../fonts/AvenirNextLTPro-Bold.woff") format("woff");
}

@font-face{
    font-family: "Avenir Next Pro Regular";
    src: url("./../fonts/AvenirNextLTPro-Regular.woff") format("woff");
}

#all{
    background: black;
    color: white;
    height: 100%;
    
    min-height: 100%;
	background-position: center;
    background-size: cover;
}

#all2{
    background: black;
    color: white;
    height: 100%;
    
    min-height: 100%;
	background-position: center;
    background-size: cover;
}

.logoHeader{
    width: 100%;
    text-align: center;
    top: 20px;
    position: fixed;
}

.logo{
    height: 50px;
}

.bodyContent{
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.myTitle{
    font-family: "Avenir Next Pro Bold";
    text-align: center;
    font-size: 40px;
    margin-bottom: 1rem;
    letter-spacing: 2px;
    text-shadow: black 1px 0 15px;
}

.divider{
    height: 2px;
    width: 200px;
    background: white;
    border-radius: 1px;
}

#buttons{
    margin-top: 1rem;
}

.button{
    border: solid 2px white;
    border-radius: 10px 0;
    padding: 5px 10px;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.2);
    font-weight: bold;
    letter-spacing: 1px;
    margin: 10px 0 10px;
    font-family: 'Avenir Next Pro Regular';
    transition: ease 0.25s all;
}

.button:hover{
    background: white;
    color: black;
    border-radius: 0 10px;
    cursor: pointer;
}

#season-btn{
    position: fixed;
    right: 0;
    bottom: 0;
    margin: 10px 15px;
    padding: 5px 10px;
    text-transform: uppercase;
    font-family: "Avenir Next Pro Regular";
    letter-spacing: 2px;
}

#season-btn:hover{
    cursor: pointer;
}

#indicateNextPage{
    color: white;
    position: fixed;
    bottom: 10px;
    left: 50%;
    height: 20px;
    width: 20px;

    -webkit-transform: translate(-50%, 0);
    -moz-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
}


@media all and (max-width: 1000px){
    .myTitle{
        /*font-size: 60px;*/
        margin: 0 1rem;
    }

    .logo{
        height: 100px
    }

    .button{
        border: solid 4px white;
        font-size: 30px;
        font-weight: lighter;
        margin: 20px 0;
        border-radius: 20px 0;
        padding: 10px 20px;
    }

    .divider{
        width: 400px;
        height: 4px
    }

    #season-btn{
        font-size: 20px
    }

    
    .animate-bar{position: relative; animation: animatebar 1s}@keyframes animatebar{from{width: 0px}to{width:400px}}
}




.animate-top{position:relative;animation:animatetop 1s}@keyframes animatetop{from{top:-300px;opacity:0} to{top:0;opacity:1}}
.animate-bottom{position:relative;animation:animatebottom 1s}@keyframes animatebottom{from{bottom:-300px;opacity:0} to{bottom:0;opacity:1}}
@media (min-width: 1001px){
    .animate-bar{position: relative; animation: animatebar 1s}@keyframes animatebar{from{width: 0px}to{width:200px}}
}






/* CONTACT */
.email{
    font-family: 'Avenir Next Pro Regular';
    letter-spacing: 2px;
    padding: 5px 5px;
    cursor: pointer;
}