@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

*, *::before, *::after {
    box-sizing: border-box;
}

* {
    margin: 0;
}

*, html, body {
    scroll-behavior: smooth !important;
}

html, body {
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
}

body {
    background-color: #1F2024;
    font-family: "Exo 2", sans-serif;
    margin: 0;
    color: #FBFBFB;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

.pageWrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

img, picture, video, canvas, svg {
    display: block;
    max-width: 100%;
}

p, h1, h2, h3, h4, h5, h6 {
    overflow-wrap: break-word;
}

#root, #__next {
    isolation: isolate;
}

img {
    width: 100%;
    height: 100%;
    max-height: 100%;
    object-fit: cover;
}

.flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

a {
    text-decoration: none;
}

a:visited {
    color: #FBFBFB;
}

.header {
    width: 100%;
    background: url(https://dl.vuamc.net/img/AVoKStB.png) no-repeat;
    background-size: cover;
}

.headerLogo {
    max-width: 250px;
    margin-left: 5px;
}

.header > div {
    width: 100%;
    flex-direction: column;
    padding: 50px;
    background: linear-gradient(rgba(31, 32, 36, .1) 0%, #1f2024 90%);
}

.playBtn {
    /* color: white; */
    font-size: 1.5em;
    padding: .75em 1em;
    font-weight: bold;
    border-radius: 20px;
    text-align: center;
    background: linear-gradient(180deg, #F0264B, #C9233A);
    text-transform: uppercase;
    animation: pulse 2s infinite;
}

.contentWrapper {
    min-width: 1200px;
    max-width: 1200px;
}

.socials {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.socialBox {
    background-color: #313238;
    flex: 1;
    display: flex;
    align-items: center;
    border-radius: 6px;
    padding: 24px;
}

.socialBoxIcon {
    margin-right: 15px;
    position: relative;
    top: 1px;
}

.socialBoxText h1 {
    margin: 0px;
    font-size: 20px;
}

.socialBoxText small {
    color: #8f9297;
    display: block;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-size: 10px;
    font-weight: bold;
}

.socialBox .socialBoxIcon svg path {
    fill: #8f9297;
}

.socialBoxDiscord {
    cursor: pointer;
    background: linear-gradient(180deg, #5B76FF, #4759E0);
}

.socialBoxDiscord .socialBoxText small {
    color: white;
}

.socialBoxDiscord:hover {
    background-color: #6d85ff;
}

.socialBoxDiscord .socialBoxIcon svg path {
    fill: white !important;
}

.activeGameMode {
    min-height: 100% !important;
    max-height: 100% !important;
    transition: all 1.5s ease;
    opacity: 1 !important;
}

#gameModes {
    overflow: hidden;
    width: 100%;
    min-height: 0;
    max-height: 0;
    opacity: 0;
    padding-top: 50px;
    text-align: center;
}

.gameMode {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    flex: 0 0 100%;
    align-self: center;
}

.gameModeText {
    flex: 0 0 45%;
    align-self: center;
}

.gameModeTitle {
    font-size: 3rem;
}

.gameModeSubtitle {
    font-size: 1.5rem;
}

.gameModeCards {
    padding: 20px 5px 5px 5px;
    gap: 20px;
}

.gameModeCard {
    cursor: pointer;
    width: calc(100%/3);
    height: 420px;
    border-radius: 10px;
    background-color: #313238;
}

.gameModeCardName {
    width: 100%;
    border-bottom: 1px solid #3b3d43;
    padding-top: 20px;
    padding-bottom: 20px;
    font-size: 1.5rem;
    font-weight: bold;
}

.gameModeCardImage {
    overflow: hidden;
    height: 200px;
    border-radius: 10px 10px 0 0;
}

.gameModeCard:hover img {
    transform: scale(1.05);
}

.gameModeCardImage img {
    transition: transform .6s ease-out;
}

.gameModeCardInfo {
    width: 100%;
    overflow: hidden;
    flex-direction: column;
}

.gameModeCardExcerpt {
    padding: 20px;
    font-size: 1rem;
}

.footer {
    height: 70px;
}

@media only screen and (max-width: 768px) {
    .contentWrapper {
        max-width: 100%;
        min-width: 100%;
        padding: 0 20px 0 20px !important;
    }

    .gameModeCards {
        flex-direction: column;
    }

    .gameModeCard {
        width: 100%;
        height: auto;
    }

    .gameModeCardImage {
        height: 200px;
    }
}
a {
 color: white;
}