body {
    margin: 0px;
}

body.landingBackground {
    background: url('/assets/images/PageBackground.png');
    background-size: cover !important;
    background-position: center !important;

    font-family: 'Lexend' !important;
}





/* LOGO-BLOCK   LOGO-BLOCK  LOGO-BLOCK  LOGO-BLOCK  LOGO-BLOCK */
/* LOGO-BLOCK   LOGO-BLOCK  LOGO-BLOCK  LOGO-BLOCK  LOGO-BLOCK */
/* LOGO-BLOCK   LOGO-BLOCK  LOGO-BLOCK  LOGO-BLOCK  LOGO-BLOCK */


.LogoBlock {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: fit-content;
    margin: 0px auto;
}
img.LogoCobble {
    position: absolute;
    right: -80px;
    bottom: 45px;
    animation: pulse 2s linear infinite;
}
@-webkit-keyframes pulse {
    0% {
        -webkit-transform: scale(1.0);
        transform: scale(1.0);
    }
    50% {
       -webkit-transform: scale(0.9);
       transform: scale(0.9);
    }
    100% {
        -webkit-transform: scale(1.0);
       transform: scale(1.0);
    }
}





/* IPBLOCK  IPBLOCK IPBLOCK IPBLOCK IPBLOCK IPBLOCK */
/* IPBLOCK  IPBLOCK IPBLOCK IPBLOCK IPBLOCK IPBLOCK */
/* IPBLOCK  IPBLOCK IPBLOCK IPBLOCK IPBLOCK IPBLOCK */


.ipBackground {
    background: rgba(0, 0, 0, 0.5);
    border-radius: 20px;
    width: fit-content;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 10px 20px;
    font-weight: 700;
    transition: 0.3s all !Important;
    cursor: pointer;
}
.ipBackground:hover {
    gap: 30px;
}
.ipBackground img {
    width: 38px;
}
.IpBlock {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.PlayerCount {
    font-weight: 700;
    color: #fff;
}




/* LINKS    LINKS   LINKS   LINKS   LINKS */
/* LINKS    LINKS   LINKS   LINKS   LINKS */
/* LINKS    LINKS   LINKS   LINKS   LINKS */



.LinksBlock {
    display: flex;
    gap: 30px;
    justify-content: center;
    align-items: center;
    margin: 50px 0px;
}
.LinksBlock a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-decoration: none;
    color: #fff;
    font-weight: 700;
    font-size: 20px;
}
.LinksBlock img {
    transition: 0.3s all !important;
}
.LinksBlock a:hover img {
    transform: scale(1.1);
}







/* FOOTER   FOOTER  FOOTER  FOOTER  FOOTER */
/* FOOTER   FOOTER  FOOTER  FOOTER  FOOTER */
/* FOOTER   FOOTER  FOOTER  FOOTER  FOOTER */


.landingFooter {
    background: #fff;
    color: #9E9E9E;
    padding: 40px;
    text-align: center;
    font-weight: 700;
}
.LinksBlock {
    display: flex;
    gap: 80px;
    justify-content: center;
    align-items: center;
    margin: 50px 0px;
}
.LinksBlock a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-decoration: none;
    color: #fff;
    font-weight: 700;
    font-size: 20px;
}
.linkBackground {
    background: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 20px;
}
.textBackground {
    background: rgba(0, 0, 0, 0.5);
    border-radius: 20px;
    width: 100%;
    text-align: center;
    padding: 15px 0px;
}














/* RESPONSIVENESS   RESPONSIVENESS  RESPONSIVENESS  RESPONSIVENESS */
/* RESPONSIVENESS   RESPONSIVENESS  RESPONSIVENESS  RESPONSIVENESS */
/* RESPONSIVENESS   RESPONSIVENESS  RESPONSIVENESS  RESPONSIVENESS */



@media (max-width: 700px) {


    img.LogoMain {
        width: 100% !important;
    }
    img.LogoCobble {
        width: 60% !important;
        right: 0 !important;
        bottom: 40px !important;
    }
    .LinksBlock {
        gap: 30px !important;
    }
    
}