/* Général */
body {
    background-image: url('../img/fond/flou/plaine.jpg');
}

main {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: large;
}

p {
    color: white;
}

/* Formulaire */
form {
    max-width: 500px;
    margin: 30px;
    margin-bottom: 255px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    color: white;
    background: rgba(0,0,0,0.75);
    border-radius: 10px;
    line-height: 40px;
}

form a {
    font-size: smaller;
    color: white;
}

form ul {
    list-style: armenian;
}

form p {
    line-height: 25px;
    font-size: small;
    color: white;
}

#b_message {
    resize:both;
    max-width: 500px;
    min-height: 75px;
}

#b_envoyer {
    width: 80px;
    height: 30px;
    margin: 10px 0;
    color: white;
    background: none;
    border-style: solid;
    border-color: white;
    transition: 0.5s;
}

#b_envoyer:hover {
    transform: scale(1.2); 
    transition: 0.5s;
}

/* Responsive design */
@media screen and (max-width: 800px) {
    form {
        max-width: 235px;
        padding: 10px;
    }

    input {
        max-width: 200px;
    }
}