#contact {
    padding-top: 7rem;
    padding-bottom: 1.2rem;
    background-image: url(../imgs/fleur-contact.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: rgba(36, 36, 36, 0.3);
    background-color: rgba(86, 104, 104, 0.549);
    background-blend-mode: multiply; /* Blend mode to combine the image and color */
    min-height: 100vh;
    color: whitesmoke;
    text-align: center;
  }

  .contact-position {
    display:lock;
    align-items: center;
  }
  
  .contact-h {
    font-size: 3rem;
    font-weight: 700;
  }
  
  /* list */
  .contact-info {
    padding-left: 0;
    padding-top: 2rem;
  }
  
  .contact-info li {
    list-style-type: none;
    font-size: 1.2rem;
  }
  
  .contact-info li a {
    color: whitesmoke;
    text-decoration: none;
  }
  
  .contact-info li a:hover {
    text-decoration: underline;
  }
  
  .contact-motto {
    margin-top: 2rem;
  }
  
  .contact-motto::before {
    content: "√";
    color: #dd7631;
  }
  
  .contact-logo {
    block-size: 7rem;
    margin-top: 1.5rem;
    text-shadow: 0px 2px 3px rgba(0, 0, 0, 0.4), 0px 4px 5px rgba(0, 0, 0, 0.1),
      0px 7px 5px rgba(0, 0, 0, 0.1);
  }
  
  @media (max-width: 991px) {
    #contact {
      min-height: 55vh;
      padding-top: 4rem;
    }
  }
  
  @media (max-width: 500px) {
    #contact {
      min-height: 85vh;
    }
  }
  