/* css reset */
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html, body {
  height: 100%;
}

body{

    background: linear-gradient(135deg, #ffb8e6, #c7d2ff);
    background-size: cover;
    background-attachment: fixed;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}


h1{
    color: aqua;
    text-align: center;
    font-size: 3em;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    letter-spacing: normal;
}

h2{
    color:white;
    text-align: center;
    font-size: 2em;
    text-decoration: underline;
    font-weight: bold;
    font-family: Arial, Helvetica, sans-serif;
    letter-spacing: normal;
}

h3{
    color:rgb(238, 7, 169);
    font-size: 2em;
    font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    letter-spacing: normal;
}

P{
    font-size: 1.2em;
    font-family: 'Times New Roman', Times, serif;
    color: black;
}
.container {
    background-color: violet;
    border: 5px solid aqua;
    border-width: 5px;
    border-radius: 5%;
    border-radius: 2px;
    margin: 0 auto;
    width: 90%;
padding: 25px;
margin-top: 50px;
}

h3{
    text-align: center;
    font-size: 2em;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    letter-spacing: normal;
}




.social-icon{
    text-align: right;
    display: flex;
    ;
}
.social-icon li{
    
    /*haut,gauche,bas,droite*/
    margin: 0px 10px 10px 0px;
    font-size: 15px;
    list-style-type: none;
    border-radius:100%;
    transition: 0.1s;
}
.social-icon a{
    display: block;
    padding: 10px;
    color: #fff;
}

.social-icon li:hover{
    transform: translate(-8px) rotate(360deg) scale(1.5);
    box-shadow: 0 10px 10px rgba(255, 255, 255, 255);
}
.social-icon li:nth-child(1){
    background-color: #1877F2;
}
.social-icon li:nth-child(2){
    background-color: #0099FF;
}
.social-icon li:nth-child(3){
    background-color: #1DA1F2;
}
.social-icon li:nth-child(4){
    background-color: #25D366;
}
.social-icon li:nth-child(5){
    background-color: #EE1D51;
}
.social-icon {
  display: flex;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.social-icon li {
  border-radius: 50%;
  transition: 0.3s;
}

.social-icon a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  color: white;
}

#image1,
#image2,
#image4,
#image5{
    float:initial;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    shape-outside: circle() ;
    margin: 0 30px 20px 0;
}


.bouton{
    display: block;
    width: 30%;
    background-color: black;
    color: antiquewhite;
    padding: 15px 32px;
    text-decoration: none;
    text-align: center;
    font-size: 1em;
    margin: 4% auto 0 auto ;
    border-radius: 10px;

}
.textInput:focus {
    outline: none;
  }
  
  .erreur {
    color: #ff0000;
  }
  
  .invalide {
    border: 2px solid #ff0000 !important;
    background-color: #ffc0cb !important;
  }
  .valide {
    border: 2px solid #00ff00 !important;
    background-color: #ffffff !important;
  }
  .label {
    color: #ff0000;
  }
  .labelOk {
    color: #00ff00;
  }
.content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background-color: #fb04f7;
  width: 100%;
  margin-top: auto;
  flex-wrap: wrap;
}
.copyright {
  font-weight: bold;
  color: white;
}

