
html, body {
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url("../image/gantBoxe.jpg") no-repeat center center / cover;
  filter: blur(5px) brightness(0.5);
  z-index: -1;
}
*, *::before, *::after {
  box-sizing: border-box;
}

body{
    font-family: Arial, sans-serif;
    margin: 0;                       
    padding: 0;                    
    height: 100vh;                   /* S'assure que le body prend toute la hauteur de l'écran */
}

#contact {
    background-color: #f9f9f9;
    padding: 40px;
    border-radius: 8px;
    width: 50%;
    margin: 10% auto;
    margin-bottom: 0%;
}
#contact h2{
    text-align: center;
    color: #c62828;
}
@media (max-width: 1200px) {

    .reseaux h2 {
        font-size: 1.2rem;
    }
    #contact{
        margin-top:20vh;
        width: 70%;

    }
    
}
@media (max-width:520px){
    .reseaux h2 {
        font-size: 1rem;
    }
   
}


form {
    display: flex;
    flex-direction: column;
}

form label {
    margin: 10px 0;
    font-size: 1.1rem;
}

form input, form textarea {
    padding: 10px;
    margin-bottom: 20px;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 4px;
}

form button {
    padding: 10px;
    background-color: #c62828;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 4px;
}

form button:hover {
    background-color: #07253d;
}
.reseaux{
    display: flex;
    justify-content: center;
    margin-top: 2%;
}


.reseaux h2{
    color : white;
}
.reseaux img {
  width: 100px;
  max-width: 100%;
  height: auto;
}

@media (max-width: 520px) {
  .reseaux img {
    width: 80px;
  }
}

/* Footer */
.baspage {
    background-color: #363734;
    width: 100%;
    padding: 40px 20px;
    color: white;
    text-align: center;
    position: relative;
    z-index: 1;
    flex-shrink: 0;
}
* {
  box-sizing: border-box;
}