/* GENERAL */

body{
    margin: 0px;
    padding: 0px;
}

.background{
    width: 100vw;
    height: 100vh;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    background-image: url(../images/bg.jpg);
}

.header{
    width: 100%;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-logo {
    padding-left: 20px;
}

.header-logo img{
    height: 150px; 
    filter: invert(1)
}

.header-menu{
    padding-right: 50px;
    font-family:'Righteous', cursive;
    font-size: 25px;
}

.header-menu a{
    color: #33d9b2;
    text-decoration: none;
}

.header-menu a:hover{
    color: brown;
    border-bottom: 2px solid brown;
}

.container{
    display : flex;
    flex-direction: column;
    height: 100vh;
    width: 100vw;
    background-color:rgba(0, 0, 0, 0);
}


.body{
    background-color: rgba(0, 0, 0, 0);
    width: 100%;
    height: 200px;
    flex: 1;
}

.form-container{
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.form{
    width: 50%;
}

.form-top{
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.rep{
    display: flex;
    flex: 1;
}

.rep1{
    padding-left: 20px;
}

.form-top  + div,
.button{
    margin-top: 1em;
}
/* TEST BOUTON */

button{
    font-family: 'Righteous',Arial,sans-serif;
    font-size: 1.6em;
    width: 200px;
    height: 43px;
    text-align: center;
    color: #000;
    background: #444;
    background: linear-gradient(#555, #2c2c2c);
    border-radius: 8px;
    text-shadow: 0px 1px 0px rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.5),
                0 -1px 0 rgba(255, 255, 255, 0.4);
    outline: 0;
}

button:hover{
    color: #222;
    background: #555;
    background: linear-gradient(#777,#333);
}

button:active{
    color: #000;
    background: #444;
    background: linear-gradient(#555, #2c2c2c);
    box-shadow: 1px 1px 10px black inset,
                0 1px 0 rgba(255, 255, 255, 0.4);
}

/* FIN TEST BOUTON */

input, textarea{
    font-family:'Righteous', cursive;
    flex: 1;
    border:none;
    outline: none;
    color: white;
    resize: none;
    border-bottom: 2px solid rgba(255, 255, 255, 0.623);
    background-color: rgba(0, 0, 0, 0);
}

input{
    flex:1;
    padding-bottom: 0.7em;
}

input:focus, textarea:focus{
    border-bottom: 2px solid rgb(255, 255, 255)
}

input::selection, textarea::selection{
    color: white;
    background-color: black;
}

input::placeholder,
textarea::placeholder{
    color: white;
    font-family:'Righteous', cursive;
    font-size: 18px;
}

.button{
    text-align: center;
}

.footer{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.footer-content h2{
    margin: 0;
    padding: 0;
    font-family:'Righteous', cursive;
    color:white;
    font-size: 25px;
}

.footer-icones{
    font-size: 35px;
    text-align: center;
}

.footer-icones .fa-facebook-square{
    color: #3b5998;
}

.footer-icones .fa-youtube-square{
    color: #c4302b;
}

.footer-icones .fa-instagram{
    background: #f09433; 
    background: -moz-linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); 
    background: -webkit-linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%); 
    background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%); 
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f09433', endColorstr='#bc1888',GradientType=1 );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-icones .fa-envelope{
    color: whitesmoke;
}


/* BANNER */

.banner{
    color:#33d9b2;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family:'Righteous', cursive;
    text-align: center;
    background-color: rgba(0, 0, 0, 0);
    width: 100%;
}

.banner .title{
    margin-bottom: -3px;
    font-size: 60px;
}


.banner .subtitle,
.banner .sub-subtitle{
    margin-top: -3px;
}

/* PHP */

.message_sent {
    color: #33d9b2;
    font-family:'Righteous', cursive;
    text-align: center;
}

.center {
    text-align: center;
}