html { 
    overflow-x: hidden !important; 
} 
body{
    background-color: #0D080F;
    margin: 0;
}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  .container{
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
  }
.déco-bas img{
    height: 100%;
    position: fixed;
    bottom: 0;
    left: -100px;
    width: 50%;
    height: auto;
}

.déco-haut img{
    height: 100%;
    position: fixed;
    top: -100px;
    right: 0;
    width: 50%;
    height: auto;
}

.background{
    width: 100%;
    height: 100%;
    z-index: 100;
    position: relative;
    
}
.content{
    position: relative;
    z-index: 999;
}
.img-content{
    width: 100%;
    height: 100%;
    text-align: center;

}

.logo{
    margin-top: 5%;
    position: relative;
    text-align: center;
    width: 45%;
    margin-left: auto;
    margin-right: auto;
}
.text-content{
    color: #FFFEF5;
    text-align: center;
    font-family: "Red Hat Display", sans-serif;
    font-size: 1.2em;
    padding-bottom: 40px;
}
.text-content p{
    padding-top: 10px;
}
.réseaux{
    width: 100%;
    height: 100%;
}
ul{
    text-align: center;
    margin: 0;
    margin-left: -30px;
}
ul li{
    display: inline-block;
}
ul li a {
    color: #FFFEF5;
    text-align: center;
    font-size: 2.3em;
    padding: 20px;

}
li a i:hover{
    color: #FAF34B;
    text-shadow: rgba(250, 244, 75, 0.473) 0px 0px 25px;
    transition-duration: 300ms;
}

i{
    border: 0;
    margin: 0;
}
.mail{
    font-family: "Red Hat Display", sans-serif;
    width: 100%;
    text-align: center;
    color: #FFFEF5;
    padding-top: 40px;
    font-size: 1em;

}
.mail a{
    color: #FFFEF5;
    text-decoration: none;
}
.mail a:hover{
    color: #FAF34B;
    text-decoration: none;
    transition-duration: 300ms;
    text-shadow: rgba(250,244,75,0.52) 0px 0px 12px;
}

@media (max-width:1000px){
    .mail{
        font-family: "Red Hat Display", sans-serif;
        width: 100%;
        text-align: center;
        color: #FFFEF5;
        padding-top: 40px;
        font-size: 1.5em;
    
    }

    ul li a {
        color: #FFFEF5;
        text-align: center;
        font-size: 4em;
        padding: 50px;
    
    }
    .text-content{
        color: #FFFEF5;
        text-align: center;
        font-family: "Red Hat Display", sans-serif;
        font-size: 35px;
        padding-bottom: 100px;
        padding: 10px;
    }
    .text-content p{
        padding-bottom: 20px;
    }
    .logo{
        margin-top: 60%;
        position: relative;
        text-align: center;
        width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .container .déco-haut{
        position: absolute;
        top: -200px;
        left: 0;
    }
    .container .déco-bas{
        position: fixed;
        bottom: -200px;
        right: 0;
    }
}