
@media (min-width: 750px) {

      #text {
        /* position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        padding-left: 45%;
        padding-top: 30%;
        background: white;
        width: 100%;
        height: 100%; */
        overflow-x: hidden;
        height: 100%;
        position: relative;
        max-width: 100%;
        font-size: 1rem;
        background-color: white;
      }
      #container {
        align-items: center;
        /* background-color: white; */
        text-align: center;
        height: inherit;
        display: flex;
        justify-content: center;
        flex-direction: column;
      }

      #loading_screen {
        width: 20%;
        /* animation: rotate 0.8s linear infinite; */
      }
    }
    @media (max-width: 750px) {
      #loading_screen {
        width: 35%;
        /* animation: rotate 0.8s linear infinite; */
      }
      #container{
        align-items: center;
        background-color: white;
        text-align: center;
        height: inherit;
        display: flex;
        justify-content: center;
        flex-direction: column;
      }
      #text{
        /* position: fixed; */
        /* top: 50%;
        left: 50%; */
        /* transform: translate(-50%, -50%);
        padding-left: 50%;
        padding-top: 100%;
        background: white;
        width: 100%;
        height: 100%; */
        overflow-x: hidden;
        height: 100%;
        position: relative;
        max-width: 100%;
        font-size: 1rem;
        background-color: white;
      }
    }

    @media only screen and (max-width: 575px) {
      #loading_screen {
        width: 50%;
        /* animation: rotate 0.8s linear infinite; */
      }
    }
    @keyframes rotate {
      0% {
        transform: rotate(0deg);
      }
      100% {
        transform: rotate(360deg);
      }
    }
