@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lilita+One&display=swap');
@font-face {
  font-family: 'Gobold-Bold';
  src: url('../assets/Gobold-Bold.woff') format('woff');
}

.contenu {
  margin-top: 80px;
  justify-content: center;
  z-index: 1;
  margin-bottom:50px;
  padding-bottom : 25px;
  border-bottom:solid white 2px;

}

.contenu .titre h1 {
  font-family: "Lilita One", sans-serif;
  font-weight: 300;
  font-size: 60px;
  color: white;  
  text-align: center;
}
body {
    background: url('../assets/img2.png') no-repeat center center fixed;
    background-size: cover;
    font-family: 'Roboto', sans-serif;
    color: white;
    height: 100vh;
    margin: 0;
}
.container {
    border-radius: 10px;
    padding: 20px;
}
.contact-info, .formulaire {
    padding: 40px;
    border-radius: 10px;
    flex: 1;
}
.contact-info {
    background-color: #1e1e1e;
    margin-right: 20px;
}
.formulaire {
    background-color: #55B039;
    margin-left: 20px;
}
.contact-info h2, .formulaire label {
    font-family: "Lilita One", sans-serif;
    text-align: center;
    margin-bottom: 20px;
}
.contact-info p, .formulaire input::placeholder, .formulaire textarea::placeholder {
    font-size: 1.25rem;
}
.formulaire input, .formulaire textarea {
    background-color: #2B672D;
    border-radius: 15px;
    color: white;
    border: none;
    padding: 10px;
    margin-bottom: 15px;
    width: 100%;
}
.formulaire input:hover, .formulaire textarea:hover {
    background-color: #19361d;
}
.formulaire input:focus, .formulaire textarea:focus {
    outline: none;
    box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.25);
}
.formulaire #envoyer {
    color: white;
    background-color: #000000;
    border-radius: 15px;
    font-size: 1.75rem;
    font-family: "Lilita One", sans-serif;
    width: 100%;
    border: none;
    padding: 10px;
    margin-top: 20px;
}
.formulaire #envoyer:hover {
    color: #000000;
    background-color: white;
}
@media (max-width: 768px) {
    .container {
        flex-direction: column;
        width: 90%;
    }
    .contact-info, .formulaire {
        margin: 0 0 20px 0;
    }
    .contenu{
        margin-top:500px;
    }
    .contact-info p{
        font-size: 16px;
    }
}
