/*
 * Coded by m1xawy
 */

:root {
  --bs-body-bg: var(--bs-gray-100);
}

body {
    width: 100%;
    height: 100vh;
    color: #fff;
    background: #130c04 url("img/background.png") no-repeat center center;
    background-size: auto auto;
}
header {
    width: 100%;
    height: 100px;
    background: none;
}
/*
main h1 {
    margin-top: 110px;
}
*/
main section > div {
    gap: 50px;
}
.card {
    width: 313px;
    height: 501px;
    background-color: transparent;
    border: none;
    border-radius: 0;
    transition: all 0.3s ease-in-out;
}
.card:hover {
    cursor: pointer;
}

.card.card-server-tibet {
    background: url("img/fun_default.png") no-repeat top center;
    background-size: auto 100%;
}
.card.card-server-tibet:hover {
    background: url("img/fun_hover.png") no-repeat top center;
    background-size: auto 100%;
}
.card.card-server-rome {
    background: url("img/rotana_default.png") no-repeat top center;
    background-size: auto 100%;
}
.card.card-server-rome:hover {
    background: url("img/rotana_hover.png") no-repeat top center;
    background-size: auto 100%;
}
.btn-thread {
    width: 232px;
    height: 52px;
    color: #fff;
    text-align: center;
    border: 0;
    border-radius: 0;
    background: url("img/threadbutton_default.png") no-repeat center center;
    background-size: 100% auto;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
}
.btn-thread:disabled,
.btn-thread.disabled,
.btn-thread:hover {
    background: url("img/threadbutton_hover.png") no-repeat center center;
    background-size: 100% auto;
}

.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

a:hover, button:hover {
    filter: brightness(120%) !important;
}
/*
#parallax {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: absolute;
    z-index: -1;
}
.parallax-layer-noise {
    width: 100%;
    height: 100%;
    background-image: url(img/noise.png);
    background-position: center center;
    background-repeat: repeat-x;
    background-size: auto auto;
    opacity: 0.025;
}
.parallax-layer-pattern {
    width: 100%;
    height: 100%;
    background-image: url(img/pattern.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 30%;
    animation: spin 50s linear infinite;
}
@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}*/
footer {
    width: 100%;
    height: 100px;
    background: none;
    background-size: auto 100%;
}
.copyright {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background-color: transparent;
    border: none;
}
.copyright a {
    color: #fff;
    text-decoration: none;
}

footer ul li a.nav-link {
    display: block;
    width: 50px;
    height: 50px;
    color: #fff;
    text-align: center;
    border: 0;
    border-radius: 0;
    background: url("img/discord_default.png") no-repeat center center;
    background-size: 100% !important;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
}
footer ul li a:hover {
    background: url("img/discord_hover.png") no-repeat center center;
}

footer ul li a.facebook {
    background: url("img/facebook_default.png") no-repeat center center;
}
footer ul li a.facebook:hover {
    background: url("img/facebook_hover.png") no-repeat center center;
}
footer ul li a.discord {
    background: url("img/discord_default.png") no-repeat center center;
}
footer ul li a.discord:hover {
    background: url("img/discord_hover.png") no-repeat center center;
}
footer ul li a.youtube {
    background: url("img/youtube_default.png") no-repeat center center;
}
footer ul li a.youtube:hover {
    background: url("img/youtube_hover.png") no-repeat center center;
}
footer ul li a.instagram {
    background: url("img/instagram_default.png") no-repeat center center;
}
footer ul li a.instagram:hover {
    background: url("img/instagram_hover.png") no-repeat center center;
}


header > div {
    position: relative;
    top: 30px;
}
footer > div {
    position: relative;
    top: -20px;
}
