@import url('https://fonts.googleapis.com/css2?family=K2D:wght@100;500&display=swap');


html{
    overflow-x: hidden;

}

body {

}

/* Style de la barre de défilement */
::-webkit-scrollbar {
    display: none;
}

main{
    height:auto;
    width: 100vw;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    background: linear-gradient(to bottom,
    rgb(10, 17, 79) 75%,
    #FF451C 100%);
}

.entete{
    z-index: 0;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100vh;
    background: linear-gradient(to bottom,
    rgba(28, 55, 164, 0.32) 80%,
    #0A114F 100%),
    url('../img/entete-image.png') center no-repeat;
    background-size: cover;
    margin-bottom: 15px;
}

.title_entete{
    font-size: 45px;
    color: rgb(255, 255, 255);
    font-family: 'K2D', sans-serif;
}

#index_content{
    display: flex;
    flex-direction: column;
    margin : 0 250px;
}

#presentation{
    display: flex;
    flex-direction: column;
}

.header_pres{
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-bottom: 15px;
}

#pres_title{
    font-size: 30px;
    color: rgb(255, 255, 255);
    font-family: 'K2D', sans-serif;
    border-right: solid 3px rgba(0, 217, 255, 0.75);
    white-space: nowrap;
    overflow: hidden;
    opacity: 0;
}

@keyframes animated-text{
    from{width: 0;}
    to{width: 180px;}
}

@keyframes animated-cursor{
    from{border-right-color: rgba(115, 0, 255, 0.75);}
    to{border-right-color: transparent;}
}

#pres_img {
    opacity: 0;
    width: 115px;
    margin-right: 25px;
}

.text{
    font-size: 17px;
    color: rgb(255, 255, 255);
    font-family: 'K2D', sans-serif;
}

.choice_btn{
    margin: 25px 0;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: stretch;
    justify-content: center;
}

.choice_btn > a > button > p {
    margin : 0;
    padding: 0;
    font-family: 'K2D', sans-serif;
}

.choice_btn > a >button {
    margin: 15px 50px 25px 0;
    width: 250px;
    height: 55px;
    color: #fff;
    border-radius: 5px;
    padding: 10px 25px;
    font-family: 'Lato', sans-serif;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
    outline: none;
    background-color: #3F1E84;
    border: none;
    z-index: 1;
}

.choice_btn > a >button:last-child{
    margin-right: 0;
}

.choice_btn > a > button:after {
    position: absolute;
    content: "";
    width: 100%;
    height: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    border-radius: 5px;
    background-color: #530ba2;
    transition: all 0.3s ease;
}

.choice_btn button:hover {
    color: #fff;
}

.choice_btn button:hover:after {
    top: 0;
    height: 100%;
}
.choice_btn button:active {
    top: 2px;
}

.separatordiv{
    height:120px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    align-content: flex-end;

}

.separator{
    width: 140px;
    border-top: solid 2px rgba(255, 255, 255, 0.25);
}

#landscape-footer {
    background: #fff url('../img/landscape-footer-index.jpg') center center/cover no-repeat local;
    height: 90vh;
}

@media (max-width: 1202px) {
    #index_content{
        margin : 0 50px;
    }
}

@media (max-width: 600px) {
    #index_content{
        margin: 0;
        text-align: center;
        padding: 0 20px
    }

    .title_entete{
        text-align: center;
        margin : 0 20px;
    }
    #canvas-wrap{
        margin-top: 0;
    }
}


