.loader {
    height: 100vh;
    width: 100%;
    background-image: url(../img/bg.jpg);
    font-family: "Minecraft Regular";
    position: fixed;
    z-index: 100;
    visibility: visible;
    opacity: 1;
    transition: 1s ease-in-out;
}


.hide {
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease-in-out;
}

.container-loading-page {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.897);
}

.loading-loading-page {
    position: absolute;
    width: 150px;
    height: 150px;
    background: linear-gradient(45deg, transparent, transparent 40%, #f1ee5f);
    border-radius: 50%;
    animation: loading 4s linear infinite;
}

div.bg-loading-page {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    width: 140px;
    height: 140px;
    background-image: url(../img/bg.jpg);
    border-radius: 50%;
    z-index: 1;
}

div.bg-dark-loading-page {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    width: 141.5px;
    height: 141.5px;
    background-color: rgba(0, 0, 0, 0.897);
    border-radius: 50%;
    z-index: 1;
}

.loading-loading-page::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, transparent 40%, #f1ee5f);
    border-radius: 50%;
    filter: blur(30px);
}

.diamond-loading-page {
    position: absolute;
    background-image: url(../img/creeper.png);
    background-position: center;
    background-size: cover;
    width: 80px;
    height: 80px;
    z-index: 6;
}

.h1-loading-page {
    position: absolute;
    bottom: 25%;
    color: #f1ee5f;
    z-index: 3;
    letter-spacing: 4px;
    animation: hidden 1.2s linear infinite;
}

@keyframes hidden {
    0% {
        color: #f1ee5f;
    }

    50% {
        color: transparent;
    }

    100% {
        color: #f1ee5f;
    }
}

@keyframes loading {
    0% {
        transform: rotate(0);
    }

    100% {
        transform: rotate(360deg);
    }
}

@media (orientation: landscape) {
    h1 {
        bottom: 15%;
    }
}