.newLine {
    width: 100%;
    margin: 0;
}

.noMargin {
    margin: 0;
}

.white {
    color: white;
}

.small {
    font-size: 0.75em;
}

.smaller {
    font-size: 0.65em;
}

.smallest {
    font-size: 0.5em;
}

.underlined {
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-decoration-skip-ink: none;
}

.underlinedThin {
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-decoration-skip-ink: none;
}

.thicker {
    font-weight: 700;
}

.thicc {
    font-weight: 900;
}

.large {
    font-size: 1.5em;
}

.larger {
    font-size: 1.3em;
}

.largest {
    font-size: 1.7em;
}

.highlight {
    padding-right: 25px;
    padding-left: 25px;
    background-color: rgba(255, 215, 0, 0.6);
    box-shadow: 0 0 15px 6px rgba(255, 215, 0, 0.8);
}

.pageBody {
    background-color: black;
    margin: 0;
    margin-top: 1.5em;
}

.mobileOnly {
    visibility: hidden;
    margin: 0;
}

.body {
    background-color: white;
    outline: 8px double gold;
    outline-offset: -8px;
    border: 7px solid black;
    border-radius: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: auto;
    width: 900px;
    font-family: sans-serif;
    padding: 2%;
    padding-top: 1%;
}

.header {
    display: block;
    margin: auto;
    text-align: center;
    width: 100%;
}

.content {
    width: 100%;
    text-align: center;
}

.details {
    width: 85%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
    margin: auto;
}

.detailsCard {
    width: 42%;
    margin-left: 4%;
    margin-right: 4%;
}

.card {
    margin: auto;
    width: 90%;
    border: 1px solid black;
    border-radius: 10px;
    box-shadow: 1px 2px 5px gray;
    padding: 1em;
    padding-top: 0;
    margin-top: 1em;
    margin-bottom: 1em;
}

.cardLine {
    width: 50%;
}

.table {
    margin: auto;
    border: 1px solid black;
    border-radius: 3px;
    border-collapse: collapse;
    text-align: center;
}

.table td {
    border: 1px solid black;
    padding-left: 1.5em;
    padding-right: 1.5em;
}

.tierList {
    margin: auto;
    width: 60%;
    border: 1px solid black;
    border-radius: 8px;
    padding: 1em;
    box-shadow: 1px 2px 5px gray;
}

.tierTable {
    margin: auto;
    border-collapse: collapse;
}

.tierTableRight {
    text-align: left;
    border-left: 1px solid black;
    border-bottom: 1px solid black;
    padding-left: 15px;
    padding-top: 5px;
}

.tierTableLeft {
    text-align: center;
    border-bottom: 1px solid black;
    padding-right: 10px;
    padding-left: 10px;
}

.footer {
    color: gold;
    margin: auto;
    text-align: center;
    font-family: sans-serif;
    font-size: 0.7em;
    margin-top: 0.5em;
}

.headerSubtext {
    margin: auto;
    width: 80%;
}

.wide90 {
    width: 80%;
}

.wide80 {
    width: 80%;
}

.wide70 {
    width: 80%;
}

.wide60 {
    width: 60%;
}

.wide50 {
    width: 60%;
}

.wide40 {
    width: 40%;
}

.hidden {
    display: none;
}

.nopadding {
    padding-top: 0;
    padding-bottom: 0;
}

.mobileOnly {
    display: none;
}

/*    MOBILE     */

@media only screen and (min-width: 360px) and (max-width: 800px) {
    .body {
        overflow-x: hidden;
        width: 92%;
        outline: 5px double gold;
        outline-offset: -5px;
        border: 5px solid black;
        border-radius: 20px;
        margin:auto;
    }

    .mobileOnly {
        visibility: visible;
        margin: auto;
        margin-top: 1em;
    }

    .details {
        width: 96%;
    }

    .detailsCard {
        width: 86%;
        border-bottom: 1px solid black;
        border-top: 1px solid black;
    }

    .tableDiv {
        overflow-x: auto;
    }

    .cardLine {
        width: 80%;
    }

    .tierList {
        width: 88%
    }
    .noMobile {
        display: none;
    }
    .mobileOnly {
        display: revert;
    }
}