.construction{
    color: #dddddd;
    text-align: center;
}
h4{
    color: #dddddd !important;
}
body{
    background-color: #222222;
}

@media only screen and (max-width: 3840px) {
    .construction {
        padding-top: 925px;
    }
}
@media only screen and (max-width: 2560px) {
    .construction {
        padding-top: 600px;
    }
}
@media only screen and (max-width: 1920px) {
    .construction {
        padding-top: 450px;
    }
}
@media only screen and (max-width: 1081px) {
    .construction {
        padding-top: 425px;
    }
}

@media only screen and (max-width: 800px) {
    .construction {
        padding-top: 375px;
    }
}

@media only screen and (max-width: 600px) {
    .construction {
        padding-top: 325px;
    }
}

@media only screen and (max-width: 500px) {
    .construction {
        padding-top: 250px;
    }
}


/*
These are for the loading icon
 */
.lds-ripple {
       display: inline-block;
       position: relative;
       width: 105px;
       height: 105px;
   }
.lds-ripple div {
    position: absolute;
    border: 4px solid #dddddd;
    opacity: 1;
    border-radius: 50%;
    animation: lds-ripple 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}
.lds-ripple div:nth-child(2) {
    animation-delay: -0.5s;
}
@keyframes lds-ripple {
    0% {
        top: 50px;
        left: 50px;
        width: 0;
        height: 0;
        opacity: 1;
    }
    100% {
        top: 0px;
        left: 0px;
        width: 100px;
        height: 100px;
        opacity: 0;
    }
}