body{
    font-family: "Montserrat", Arial, Verdana, Geneva, Helvetica, sans-serif;
    background-color: rgba(221, 255, 236, 0.5);
}

header{
    position: sticky;
    display: flex;
    justify-content: space-around;
    background-color: rgb(29, 183, 98);
    color: white;
    font-size: 1.5rem;

}
header img{
    width: 5%;
}

intro{
    text-align: center;
    font-size: 1.3rem;
}
intro h1{
    margin-top: 3%;
    margin-bottom: 3%;
    font-size: 3.5rem
}

corps p{
    font-size: 1.3rem;
    margin-right: 10%;
    margin-left: 10%;
    padding-top: 5%;
    padding-bottom: 5%;
    margin-top: 5%;
    margin-bottom: 5%;
    text-align: center;
    border-top: 2px solid black;
    border-bottom: 2px solid black;
}

footer{
    display: flex;
    background-color: rgb(29, 183, 98);
    padding: 2%;
    justify-content: space-around; 
    color: white;
}

a:link,
a:visited,
a:hover,
a:active {
    color: white;
    text-decoration: none;
    outline: none;
}


h4:hover {
  animation: grossissement 0.2s ease-in-out forwards;
}

h2:hover {
  animation: grossissement 0.2s ease-in-out forwards;
}

@keyframes grossissement {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.1);
  }
}





@media (max-width: 700px) {
  header {
    display: block;
    text-align: center;
    
  }
  .ko{
    padding-top: 10%;

}
  header img{
    width: 65%;
    
}
  footer{
    display: block;
    text-align: center
  }

}






































