html{
    scroll-behavior: smooth;
  }
  .imgContent{
    text-align: center;
  }
  
  .imgContainer img{
    width: 100%;
    height: 100%;
    object-fit:contain;

  }
  .coverBox{
    margin: 20px 10px;
    height: auto;
    display: inline-block;
    text-align: center;
    text-decoration: none;
    width:fit-content;     
    padding-bottom: 5px;
    background-color: rgb(0, 162, 255);
    font-weight: 800;
    color: white;
  }
  .imgContainer{
    height: 80vw;
    overflow: hidden;
    margin-bottom: 10px;
  }
  #contact{
    display: inline-block;
    width: 90%;
    align-items: center;
    justify-content: center;
  }
  #contact span{
    width: 95%;
    text-align: center;
    height: 150px;
    display: flex;
    align-items: center;
    font-size: 20px;
    border-radius: 20px;
    background-color: rgb(27, 215, 65);
    color: white;
    font-weight: 800;
    margin: 0 auto 20px;
    padding-right: 10px;
  }
  #contact img{
    padding: 2.5%;
    height: 95%;
    object-fit: cover;
  }
  .returnHome{
    z-index: 1000;
    animation: slideDown 0.35s ease-out;
    backdrop-filter: blur(10px);
    position: fixed;
    bottom: 5%;
    right: 5%;
    border: #551a8b 2px solid;
    border-radius: 15px;
    padding: 5px;
  }
  @media screen and (min-width: 576px){
    .imgContainer{
      height: 50vw;
    }
   /* .coverBox{
      width: calc(100%/3 - 24px);
    }*/
  }
  @media screen and (min-width: 796px){
    .imgContainer{
      height: 40vw;
    }
  }
  @media screen and (min-width: 1200px){
    .imgContainer{
      height: 30vw;
    }
  }