/* Style pour le body */
body {
    display: flex;
    flex-direction: column ;
    justify-content: center;
    align-items: center;
    background: rgb(2,0,36);
    background: linear-gradient(180deg, rgba(2,0,36,1) 0%, rgba(1,1,1,1) 0%, rgba(106,106,106,1) 100%);

    min-height: 100vh;

    margin: 0;
}

/* Style pour le titre h1 */
h1 {
    font-family: Arial, sans-serif;
    font-size: 5em;
    display: flex;
    flex-direction: row;
    justify-content: center;
    color: white;
}

/* Style pour le titre h2 */
h2 {
    font-family: Arial, sans-serif;
    font-size: 1em;
    display: flex;
    flex-direction: row;
    justify-content: center;
    color: black;
}

/* Main */
main {
    justify-self: center;
    padding : 2em;
    width: 50%;
    max-width: 50%;
    background-color: gray;
    border: 3px solid white;
    transition: transform 0.7s ease;
}

main:hover {
    transform: scale(1.01);
}

/* Bouton envoyer */
button {
    border: 2px solid black;
    border-radius: 3px;
    width: 6em;
    height: 3em;
    transition: transform 0.7s ease;
}

button:hover {
    cursor: pointer;
    transform: scale(1.08);
    background-color: black;
    border: 2px solid white;
    color: white;

}

/* Texte */
label {
    font-family: Roboto Slab;
    font-size: 2em;
}

input {
    width: 70%;
}

input[type="email"],
input[type="text"],
textarea {
    border: 2px solid blue;
    border-radius: 2px;
}

form {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    width: 100%;
    height: auto;
}

/* Nom */
.div-form {
    background-color: white;
    height: auto;
    margin: 5px;
    padding: 1em;
    border: 3px solid black;
    border-radius: 10px;
}

.div-elements {
    width: 100em;
}

#div-id {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: stretch;
    width: 100%;
}

#message {
    width: 80%;
}