* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'roboto', sans-serif;
}

.ecran {
    width: 100%;
    height: 100vh;
    background-image: url(images/FondEcran2.jpg);
    background-position: center;
    background-size: cover;
    position: fixed;
    display: flex;
}

.personnage {
    position: relative;
    margin-top: 250px;
    margin-left: 16%;
}

.texte {
    text-align: center;
    margin-top: 150px;
    margin-left: 12%;
    color: #ecddf0;
}

.texte h1 {
    font-size: 5rem;
    padding-bottom: 15px;
    font-weight: 900;
    letter-spacing: 2px;
}

.texte h2 {
    font-size: 2.5rem;
    padding-bottom: 15px;
    letter-spacing: 1px;
}

.texte h3 {
    font-size: 1.5rem;
    padding-bottom: 25px;
}

.logo img {
    width: 70px;
    padding-right: 25px;
}

.texteLogo {
    width: 300px;
}

.texteLogo span {
    padding-left: 35px;
}

.site {
    padding-top: 30px;

}

.adresse a span {
    font-size: 15px;
}


.site a {
    color: #ecddf0;
    text-decoration: none;

}

.adresse {
    animation: nomsite 5s infinite;
}

@keyframes nomsite {
    30% {
        scale: 1.5;
    }
}

.site a:hover {
    color: rgb(17, 20, 229);
}

.site span {
    font-size: 5px;
}

.btnContact {
    margin-top: 50px;
    width: 100%;
    border-radius: 15px;
    background-color: #ecddf0;
}

.btnContact a {
    font-size: 30px;
    padding: 20px;
    color: blue;
    font-weight: 800;
    text-decoration: none;

}


/************contact.php******************************/
#containerHommeFemme .femme {
    width: 100px;
}

#containerHommeFemme .homme {
    width: 135px;
}

#containerHommeFemme {
    margin-bottom: 50px;
}

#contact .infoContact {
    width: 400px;
    text-transform: capitalize;
    background-color: #fff;
    text-align: center;
    color: green;
    font-size: 13px;
    padding: 14px;
    margin-bottom: 20px;
    border-radius: 20px;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
    animation: anime 0.5s ease-out;
}


@keyframes anime {
    from {
        transform: translateY(-70px);
    }
}


#contact {
    background-color: #1a1a1a;
    padding: 100px 0;
    margin: 10px;
}

#contact .containerContact {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    background-color: #fff;
    padding: 30px 10px;
    border-radius: 15px;
    box-shadow: 0 10 50 -10 #d6d6d6;
    box-sizing: border-box;
}

#contact .containerContact .titreContact {
    text-align: center;
    color: #2a2a2a;
    margin-bottom: 20px;
}

#contact .containerContact .titreContact h6 {
    font-size: 1em;
}

#contact .containerContact .titreContact h3 {
    font-size: 1.8em;
}

#contact .containerContact form {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 600px;

}

#contact .containerContact form input:hover,
#contact .containerContact form textarea:hover {
    border-bottom: 2px solid #1fbf4c;

}

#contact .containerContact form input,
#contact .containerContact form textarea {
    margin: 10px 0;
    padding: 10px;
    box-sizing: border-box;
    border: none;
    outline: none;
    border-bottom: 2px solid #e4e4ec;
    transition: 0.2s;
    width: 40%;
}

#contact .containerContact form input {
    width: 47%;

}


#contact .containerContact form textarea {
    width: 100%;
    margin-bottom: 50px;
    height: 100px;
    resize: none;

}

#contact .containerContact form button {
    width: 192px;
    height: 50px;
    border-radius: 8px;
    border: none;
    background-color: #1fb3bf;
    color: white;
    font-weight: bold;
    font-size: 1.2em;
    cursor: pointer;
    outline: none;
    margin: 0 auto;
}

#contact .containerContact form button:hover {
    font-size: 1.4em;
}

@media screen and (max-width: 500px) {
    #contact .containerContact form {
        flex-direction: column;
        width: 95%;
    }

    #contact .containerContact form input {
        width: 100%;

    }
}

/**********************FIN contact****************/

@media screen and (max-width: 970px) {
    .personnage {
        display: none;
    }
}

@media screen and (max-width: 500px) {
    .texte h1 {
        font-size: 3rem;
        padding-bottom: 15px;
        font-weight: 900;
        letter-spacing: 2px;
    }

    .texte h2 {
        font-size: 2rem;
        padding-bottom: 15px;
        letter-spacing: 1px;
    }

    .texte h3 {
        font-size: 1.5rem;
        padding-bottom: 25px;
    }

    .logo img {
        width: 50px;
        padding-right: 25px;
    }

    .texteLogo {
        width: 250px;
    }

    .texteLogo span {
        padding-left: 15px;
    }
}