body{
    background-image:url(../photos/back.png);
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
}


.navi{
    padding-top: 1%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 5%;
}

    .gora {
        list-style-type: none;
        margin: 0;
        padding: 0;
        flex-wrap: wrap;
        display: flex;
        justify-content: center;
    }

        .gora li {
            padding-top: 10px;
        }
        
            .gora a{
                color: #f5f4f4;
                text-decoration-style: solid;
                font-family: sans-serif;
                text-decoration: none;
                font-size: x-large;
                padding: 15px 15px;
                text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
            }

            .gora a:hover{
            color: #ab3bf7;
            text-decoration-style: solid;
            font-family: sans-serif;
            text-decoration: none;
            font-size: x-large;
            padding: 15px 15px;
            text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
            }


.padding_center_box{
    max-width: 1202px;
    height: auto;
}  

    .center_box{
        background-color: #00000083;
        display: flex;
        text-align: left;
        box-sizing: border-box;
        padding-top: 3%;
        padding-left: 3%;
        padding-bottom: 5%;
        margin-bottom: 50px;
        border-radius: 20px;
        margin-left: 20px;
        margin-right: 20px;
    }
        
        .text_box{
            width: 97%;
        }

        .title{
            width: 100%;
            height: auto;
            text-align: center;
            padding-bottom: 2%;
        }

        .rest{
            color: #e9e9e9;
        }

        .text{
            font-family: sans-serif;
            color: #f5f4f4;
            font-size: xx-large;
            text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
        }

footer {
    width: 100%;
    height: auto;
}

    .footer-icons {
        background-color: #121212;
        margin: 0;
        padding:0;
        display: flex;
        flex-wrap: wrap;
    }

        .footer-icons li {
            width: 25%;
            padding: 10px;
        }

            .footer-icons a {
                justify-content: center;
                display: flex;
                color: #828282;
                text-decoration: none;
                gap: 8px;
                font-size: 20px;}
                
                .footer-icons svg {
                    flex-shrink: 0;
                }

                .discord a:hover{
                    color: #5663f7;
                    text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
                }

                .youtube a:hover{
                    color: #fd0133;
                    text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
                }

                .facebook a:hover{
                    color: #0966fe;
                    text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
                }


    .footer-text{
        width:100%;
        background-color:#171717;
        color:#828282;
        text-align:center;
        padding:10px;
    }


@media (max-width: 599px){

    .footer-icons li {
    width: 50%;
    padding: 10px;
    }

        .footer-icons a {
            justify-content: center;
            display: flex;
            color: #828282;
            text-decoration: none;
            gap: 8px;
            font-size: 20px;}

}
#preloader {
        position: fixed;
        width: 100%;
        height: 100%;
        background: #000;
        z-index: 9999;
        display: flex;
        align-items: center;
        justify-content: center;
    }

.loader-dots {
        display: flex;
        gap: 10px;
    }

.loader-dots span {
        width: 15px;
        height: 15px;
        background-color: #4CAF50;
        border-radius: 50%;
        animation: bounce 1s infinite ease-in-out;
    }

.loader-dots span:nth-child(1) {
        animation-delay: 0s;
    }

.loader-dots span:nth-child(2) {
        animation-delay: 0.1s;
    }

.loader-dots span:nth-child(3) {
        animation-delay: 0.2s;
    }

.loader-dots span:nth-child(4) {
        animation-delay: 0.3s;
    }

.loader-dots span:nth-child(5) {
        animation-delay: 0.4s;
    }

@keyframes bounce {
        0%, 80%, 100% {
            transform: translateY(0);
        }
        40% {
            transform: translateY(-20px);
        }
    }
