
body {
    background-color: #0A0A0A;
    height: 100vh;
    width: 100vw;
    margin: 0px;
}

.main-content {
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity .4s ease-out;
}

@media (-webkit-device-pixel-ratio : 1.25) {
    :root {
        zoom : 0,8 ;
    }
}

/* ===== Loader CSS 👇 =====*/

.loading {
    position: absolute;
    bottom: 20%;
    right: 50%;
    width: 200px;
    height: 20px;
    font-size: 18;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    align-content: center;
    left: 51%;
    transform: translateX(-50%);
}

img {
    width: 300px;
    height: 300px;
    position: absolute;
}

.loader {
    position: relative;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: linear-gradient(#f07e6e, #fae484, #fae484);
    animation: animate 1.2s linear infinite;
}

@keyframes animate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.loader span {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 60%;
    background: linear-gradient(#f07e6e, #84cdfa, #5ad1cd);
}

.loader span:nth-child(1) {
    filter: blur(5px);
}

.loader span:nth-child(2) {
    filter: blur(10px);
}

.loader span:nth-child(3) {
    filter: blur(25px);
}

.loader span:nth-child(4) {
    filter: blur(50px);
}

.loader:after {
    content: "";
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    background: #191919;
    border-radius: 50%;
}