/* Polices d'Écriture du Site */
@font-face {
    font-family: "Roboto";
    src: url('polices\Roboto\Roboto-Regular.ttf');
}

/* Header Style */
header {
    text-align: center;
    padding: 20px;
    color: #2596be;
    background-color: #e5e7e8;
    font-family: "Roboto";
    font-style: bold;
}

h1 {
    color: #2c2c2e;
    font-size: larger;
}


/* Navigation Menu Style */
nav {
    text-align: center;
    word-spacing: 50px;
    padding: 20px;
    background-color: #e5e7e8;
}

nav a {
    color: #2c2c2e;
    text-decoration: none;
    font-size: larger;
    font-style: italic;
}


#formulaire {
    font-family: "Roboto";
    display : flex;
    justify-content: center;
    padding: 150px;
    background-image: url(../images/codesurordinateur.png);
    background-repeat: no-repeat;
    background-size: cover;
}

#formulaire h1 {
    font-size: 2em;

}
#formulaire p {
    font-size: 1.5em;
    font-style: italic;
}
#formulaire button {
    width: 100%;
    height: 50px;
    border-radius: 25px;
    background-color: #5555c7;
    color: white;
    font-size: 1.5em;
}
#formulaire input {
    box-shadow: 5px 5px 5px 0px rgba(44,44,46,0.75);
}
#formulaire textarea {
    box-shadow: 5px 5px 5px 0px rgba(44,44,46,0.75);
}
form {
    border: 2px solid #2c2c2e;
    border-radius: 30px;
    padding: 50px;
    background-color: #e5e7e8;
    background: transparent;
    backdrop-filter: blur(15px);
    box-shadow: 10px 10px 5px 0px rgba(44,44,46,0.75);
}
button:hover {
    scale: 1.2;
}
/* input:hover {
    scale: 1.2;
} */

main {
    display: flex;
    flex-direction: row;
    justify-content: center;
}
#reponse {
    font-family: "Roboto";
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
    align-items: center;
    border: 2px solid #2c2c2e;
    padding: 20px;
    border-radius: 20px;
    background-color: #e5e7e8;
    box-shadow: 10px 10px 5px 0px rgba(44,44,46,0.75);
}