  body {
    font-family: Arial, Helvetica, sans-serif;
    height: 100vh;
    width: 100%;
    line-height: 1.4;
    background: url(../img/mairie_ruelle_sur_touvre.jpg);
    background-size: cover;
    background-repeat: no-repeat;
  }
  
  .container {
    width:50%;
    height:100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin:0 auto;
  }
  
  .titre {
    font-size: 50px;
    letter-spacing: 1px;
    margin-bottom: 45px;
    color: rgb(0, 0, 0);
    font-weight: bold;
    animation: apparition 1.6s ease-out;
    text-shadow: 1px 3px 0 #969696, 1px 13px 5px #aba8a8, 2px 2px 2px rgba(206,89,55,0);
  }

  @keyframes apparition {
    from {
        opacity: 0;
        transform: translateY(-100px);
    }
    to {
        opacity: 1;
        transform: translateY(0px);
    }
  }
  
  .sous-titre {
    font-size: 26px;
    letter-spacing: 1px;
    margin-bottom: 60px;
    color: rgb(0, 0, 0);
    font-weight: bold;
    animation-delay: 1.6s;
    animation: apparition-fondue 3s ease-out;
    text-shadow: 1px 3px 0 #969696, 1px 13px 5px #aba8a8, 2px 2px 2px rgba(206,89,55,0);
  }

  @keyframes apparition-fondue {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
  }
  
  button {
    color: var(--color-black);
    font-size:1.2rem;
    width:160px;
    padding:10px;
    border-radius: 10px;
    outline: none;
    border: none;
    cursor: pointer;
    position: relative; 
  }
  
  .btn-connexion {
    background-color: var(--btn-vert);
    box-shadow: 0 6px #0e5433;
  }
  
  .btn-connexion:hover {
    box-shadow: 0 4px #0e5433;
    top: 2px;
  } 
  
  .btn-connexion:active {
      box-shadow: 0 0 #0e5433;
      top: 6px;
  }
  
  .btn-inscription {
    background-color: var(--btn-jaune);
    box-shadow: 0 6px #c49405;
  }
  
  .btn-inscription:hover {
    box-shadow: 0 4px #c49405;
    top: 2px;
  } 
  
  .btn-inscription:active {
      box-shadow: 0 0 #c49405;
      top: 6px;
  }

  /*FOOTER*/

  footer
  {
    position: absolute;
    bottom: 0;
    background: rgba(238, 234, 234, 0.562);
    height: auto;
    width: 100%;
    color: #fff;
  }
  
  .copyright
  {
    background: rgba(7, 7, 7, 0.801);
    width: 100vw;
    padding: 20px;
    padding-bottom: 40px;
    text-align: center;
  }
  
  .copyright p
  {
    float: left;
    font-size: 14px;
    word-spacing: 2px;
    text-transform: capitalize;
  }
  
  .menu
  {
    float: right;
  }
  
  .menu ul
  {
    display: flex;
  }
  
  .menu ul li
  {
    padding-right: 10px;
    display: block;
  }
  
  .menu ul li a
  {
    color: #cfd2d6;
    text-decoration: none;
  }
  
  .menu ul li a:hover
  {
    color: #27bcda;
  }

  /*FOOTER*/