td, tr{
    text-align: center;
}

body{
    background-image:url(../photos/jesus.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 #1b1b1b, 1px -1px 0 #1b1b1b, -1px 1px 0 #1b1b1b, 1px 1px 0 #1b1b1b;
            }

            .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 #1b1b1b, 1px -1px 0 #1b1b1b, -1px 1px 0 #1b1b1b, 1px 1px 0 #1b1b1b;
            }


.center_box{
    background-color: #1E263199;
    flex-wrap: wrap;
    box-sizing: border-box;
    padding-top: 3%;
    border-radius: 40px;
    max-width: 1152px;
    min-height: 1412px;
    flex-direction: row;
    margin-bottom: 50px;
}
    .container_{
        width: 95%;
        height: 76px;
    }

.text_box{
    width: 100%;
}

.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;
}

.img_icon{
    height: 150px;
    width: 150px;
    position: relative;
    right: -20%;
}


.inside{
    display: grid;
    justify-items: center;
}

.wybor{
    display: flex;
    width: 100%;
    height: auto;
}
.pointer{
    width: 33.3%;
    background-color: transparent;
    height: auto;
}
.numery{
    width: 33.3%;
}

.numery_font{
    font-size: xx-large;
    color: #5e5e5eff;
}

table{
    opacity: 0;
    animation: fading 4s;
    animation-fill-mode: forwards;
    animation-timing-function: ease-out;
}

@keyframes fading {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}



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);
        }
    }
