/* body {
    animation: fadeInDown 0.2s ease;
} */

#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    padding-top: 15%;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 600;
}

#loading-screen p {
    font-size: larger;
    color: rgb(111 111 111);
    font-weight: 600;
    z-index: 600;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media screen and (max-width: 992px) {

    #loading {
      padding-top: 50%;
    }
  
  }