
  #title-Tag-Line {
    font-size: 20px;
  }

  .form {

    background: #fff;
    box-shadow: 0 30px 60px 0 rgba(90, 116, 148, 0.4);
    border-radius: 5px;
    max-width: 480px;
    margin: auto;
    padding-top: 5px;
    padding-bottom: 5px;
    left: 0;
    right: 0;
    top: 150px;
    bottom: auto;
    position: absolute;
    border-top: 5px solid #0e3721;
    animation: bounce 1.5s infinite;

  }
#section-globale{
    display: flex;
    flex-direction: column;
  }
#section-bottom{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#section_commentaire{
  
    display: flex;
    align-items: center;
    justify-content: center;

}
.commentaire-article{
  margin-top: -30px;
  width: 480px;
  border-radius: 20px;
  background-color: white;
}
#article_form{
  display: none;
  flex-direction: column;
  padding: 3% 3%;
  flex: 0 0 25%;
}
  .form1 {
    background: #fff;
    box-shadow: 0 30px 60px 0 rgba(90, 116, 148, 0.4);
    border-radius: 5px;
    max-width: 480px;
    margin: auto;
    padding-top: 5px;
    padding-bottom: 5px;
    bottom: auto;
    border-top: 5px solid #0e3721;
    animation: bounce 1.5s infinite;

  }
  ::-webkit-input-placeholder {
    font-size: 1.3em;
  }
  
  .title{
    display: block;
    font-family: sans-serif;
    margin: 10px auto 5px;
    width: 300px;
  }
  .termsConditions{
    margin: 0 auto 5px 80px;
  }
  
  .pageTitle{
    font-size: 2em;
    font-weight: bold;
  }
  .secondaryTitle{
    color: grey;
  }
  
  .name {
    background-color: #ebebeb;
    color: white;
  }
  .name:hover {
    border-bottom: 5px solid #0e3721;
    height: 30px;
    width: 380px;
    transition: ease 0.5s;
  }
  
  .email {
    background-color: #ebebeb;
    height: 2em;
  }
  
  .email:hover {
    border-bottom: 5px solid #0e3721;
    height: 30px;
    width: 380px;
    transition: ease 0.5s;
  }
  
  .message {
    background-color: #ebebeb;
    overflow: hidden;
    height: 10rem;
  }
  
  .message:hover {
    border-bottom: 5px solid #0e3721;
    height: 12em;
    width: 380px;
    transition: ease 0.5s;
  }
  
  .formEntry {
    display: block;
    margin: 30px auto;
    min-width: 300px;
    padding: 10px;
    border-radius: 2px;
    border: none;
    transition: all 0.5s ease 0s;
  }
  
  .submit {
    width: 200px;
    color: white;
    background-color: #03152d;
    font-size: 20px;
  }
  
  .submit:hover {
    box-shadow: 15px 15px 15px 5px rgba(78, 72, 77, 0.219);
    transform: translateY(-3px);
    width: 300px;
    border-top: 5px solid rgb(75, 84, 131);
    border-radius: 0%;
  }
  
  @keyframes bounce {
    0% {
      tranform: translate(0, 4px);
    }
    50% {
      transform: translate(0, 8px);
    }
  } 
  
  