body {
    overflow-x: hidden;
}

header nav ul {
    height: 100%;
    list-style: none;
    display: flex;
    gap: 1rem;
    align-items: center;
}

header>nav>ul>li>a {
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--clr-bunker)
}

/* How To Play */
.leftSection {
    height: calc(100dvh - 90px);
    padding: 2.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.card {
    flex: 1 1 350px;
    background: var(--clr-parchment);
    border-radius: 1rem;
    padding: 1rem;
    height: 94%;
    min-height: 300px;
    display: flex;
    flex-direction: column;
}

.CardHeader {
    border-bottom: 2px solid var(--clr-yellow);
    text-align: center;
    font-size: 1.4rem;
    padding-bottom: 0.4rem;
    margin-bottom: 1rem;
}

.CardHeader h2 {
    color: var(--clr-abyss);
    font-weight: 900
}

.CardBody {
    width: 100%;
    flex-grow: 1;
}

.CardBody ul {
    list-style: none;
    display: flex;
    gap: 0.3rem;
    flex-direction: column;
}

.CardBody ul li {
    font-size: 1.2rem;
    font-weight: 550;
    position: relative;
    color: var(--clr-abyss)
}

.CardBody ul li::before {
    content: "- ";
}

.CardBody .OR {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.CardBody .OR span {
    width: 3rem;
    height: 3rem;
    border-radius: 30%;
    background: var(--clr-abyss);
    display: grid;
    place-items: center;
    color: var(--clr-parchment);
    position: relative;
    z-index: 9999;
}

.CardBody .OR .sep {
    width: 100%;
    background: var(--clr-abyss);
    height: 2px;
    position: absolute;
    z-index: 99;
}

.CardBody .OR::before {
    content: "";
}

.CardFooter {
    width: 100%;
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.CardFooter a {
    flex: 1 1 170px;
    width: 100%;
    background: var(--clr-abyss);
    padding: 0.6rem;
    border-radius: .6rem;
    text-decoration: none;
    color: var(--clr-parchment);
    font-size: 1.2rem;
    font-weight: 600;
    text-align: center;
}

@media screen and (max-width: 730px) {
    header>nav {
        display: none;
    }

    .leftSection {
        padding: 1rem 2rem
    }
}