body, html{
    padding-top: 10px;
}

#main-text{
    text-shadow: 0.02em 0 lightgray, 0 0.02em lightgray;
    text-align: center;
    animation-duration: 1.6s;
    animation-name: text-focus-in;
    opacity: 1;
    background: rgba(35, 35, 35, 0.5);
    border-radius: 0.1em;
    padding: 20px;
  }
  
  #main-background-image{
    padding-top: 40px;
    padding-bottom: 15px;
    background-image:linear-gradient(
      rgba(0, 0, 0, 0.2),
      rgba(0, 0, 0, 0.2)
    ), url("images/building.jpeg");
    max-width: 100%;
    height: 90vh;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    margin-bottom:0px !important;
    border: 1px solid black;
  }

@media (max-width: 576px) { 
    #large-logo {
        display: none;
    }
  }
  
  @media (min-width: 577px) { 
    #large-logo {
        display: none;
    }
  }
  
  @media (min-width: 992px) { 
    #large-logo {
        display: inline-block;
    }
  }
  
  @media (min-width: 1200px) { 
    #large-logo {
        display: inline-block;
    }
  }