@font-face{
    font-family: AeroMatics;
    src: url(../Styles/police_AeroMatics.ttf)
}

@font-face{
    font-family: SuperDream;
    src: url(../Styles/police_SuperDream.ttf);
}

.contenu{
    max-width: 100vw;
}

.contenu-titre{
    box-sizing: border-box;
    margin-top: 80px;
    padding: 0 20px 0 20px;
    display: flex;
    justify-content: center;
}

.titre{
    margin: 0;
    max-width: 315px;
    text-align: center;
    font-size: 45px;
    color: white;
    font-family: SuperDream;
}

.contenu-texte{
    box-sizing: border-box;
    margin-top: 80px;
    padding: 0 20px 0 20px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    justify-content: center;
    font-family: arial;
}

.texte{
    font-size: 16px;
    margin: 0;
    color: white;
    text-align: center;
}

.texte2{
    font-size: 19px;
    font-weight: bold;
}

.formulaire{
    width: 100%;
    margin-top: 40px;
    box-sizing: border-box;
    padding: 20px 20px 20px 20px;
    font-family: arial;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #FFA200;
}

form{
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 610px;
    width: 100%;
}

form div{
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}

form div label{
    padding-bottom: 10px;
}

form div input{
    box-sizing: border-box;
    border: none;
    border-radius: 10px;
    padding: 8px 16px 8px 16px;
    font-size: 16px;
    min-height: 55px;
    outline: none;
}

form div textarea{
    box-sizing: border-box;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    min-height: 85px;
    outline: none;
    font-family: arial;
    padding: 18px 16px 8px 16px;
    resize: vertical;
}

form button{
    background-color: #1D1D1D;
    color: white;
    box-sizing: border-box;
    border: none;
    border-radius: 10px;
    min-height: 50px;
    margin-top: 20px;
    cursor: pointer;
    font-weight: bold;
    font-size: 16px;
}

@media screen and (min-width: 769px){
    .titre{
        font-size: 76px;
        min-width: 700px;
    }

    form{
        max-width: 670px;
        flex-direction: row;
        flex-wrap: wrap;
    }

    form div{
        flex: 1 1 40%;
    }

    .formulaire-demande{
        flex: 0 0 100%;
    }
    
    form button{
        flex: 0 0 100%;
    }
}

@media screen and (min-width: 1025px){
    .titre{
        min-width: 1000px;
    }
}