

/* BODY */
body{
font-family: "Poppins"; 
font-weight: 400;
font-style:normal;
margin: 0px;
}

/*HEADER*/
h3{
    font-weight: 400;
}

h6{
    font-size: xx-large;
    margin: 20px;
}

.header{
    display: flex;
    flex-direction: row;
    align-items:  center;
    justify-content: space-between;
    background-color: rgba(97, 152, 255, 1);
}

.nav-bar{
    display: flex;
    flex-direction: row;
    gap: 20px;
    margin: 0px 40px 0px 0px;
    
}

.nav-bar a{
    text-decoration: none;
    color: black;
}

.nav-bar li{
    list-style-type: none;
}


/*MAIN*/

.ul{
    text-align: center;
}

.ul li{
    list-style-type: none;
}

h1{
    text-align: center;
    margin: 20px;
}

h2{
    text-align: center;
    margin: 15px;
}

h3{
    text-align: center; 
    margin: 15px;
}

h4{
    text-align: center;
    margin: 10vh 5vh 10vh 1vh;
    font-size: x-large;
}

.com{
    background-color: rgba(217, 217, 217, 0.34);
    margin: 5vh 50vh 5vh 50vh;
    border-radius: 15px;
}

/*FORMS*/

.Form {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  width: 100%;
  box-sizing: border-box;
}


.Forms {
  width: 100%;
  max-width: 500px;
  padding: 2rem;
  background-color: #f5f5f5;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
}


.input-box {
  margin-bottom: 1rem;
}


.input-box input,
.input-box textarea {
  background-color: rgba(97, 152, 255, 1);
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  box-sizing: border-box;
  resize: vertical;
}

.Envoyer {
  text-align: center;
}

.Envoyer button {
  padding: 0.75rem 1.5rem;
  background-color: rgba(97, 152, 255, 1);
  border: none;
  color: white;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.Envoyer button:hover {
  background-color: rgba(97, 152, 255, 1);
}

/*FOOTER*/
img{
    height: auto;
    margin: 0px 10px 0px 10px;
}

footer h4{
    margin: 0px 10px 0px 10px;
    font-size: small;
}

footer{
    display: flex;
    flex-direction: row;
    align-items:  center;
    justify-content:space-around;
    background-color: rgba(97, 152, 255, 1);
}

footer a{
    text-decoration: none;
    color: black;
}

footer ul{
    display: flex;
    flex-direction: column;
    align-items:  end;
    margin-right: 50px;
}
footer li{
    list-style-type: none;
}


