.box {
    min-height: 50px;
    border-radius: 5px;
    margin-top: 10px;
}

.darkest {
    background-color: #2d1512;
}

.darker {
    background-color: #440e09;
}

.light {
    background-color: #651208;
}

.lighter {
    background-color: #b5002e;
}

.bgdarkest {
    background-color: #222526;
}

.bgdarker {
    background-color: #181a1b;
}

.header {
    position: fixed;
    z-index: 100;
    top: 0;
    width: 100%;
    min-height: 70px;
    background: rgb(181, 0, 46);
    background: linear-gradient(47deg, rgba(181, 0, 46, 1) 0%, rgba(98, 22, 36, 1) 100%);
}

.flex-container {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    flex-direction: revert;
    padding-top: 80px;
    justify-content: center;
    justify-items: center;
    align-items: center;
    align-content: center;
    max-width: 100%;
}

.flex-item {
    padding: 26px 20px 0px 20px;
    text-align: center;
    font-size: 18px;
    color: white;
    font-weight: bold;
    margin: 0;
    transition: 200ms;
}



.contentCard {
    border-radius: 25px;
    height: 240px;
    margin: 0;
    box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.5);
    transition: 200ms;
}

.contentCard:hover {
    box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.8);

}

.flex-item:hover {
    transform: scale(105%);
}

.flex-text {
    width: fit-content;
    min-width: 50px;
    text-align: left;
    margin: 0;
    padding: 10px 20px 14px 20px;
    backdrop-filter: blur(5px);
    box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.8);
    max-width: 350px;
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    font-size: 120%;
    position: absolute;

    top: -4.4em;
    left: 0.8em;
}

.flex-text-parent {
    position: relative;
}

body {
    -ms-user-select: none;
    -webkit-user-select: none;
    user-select: none;
    max-width: 100%;
}

a {
    text-decoration: none;
    color: white;
}

.inner-text {
    text-align: left;
    font-weight: normal;
    font-size: 70%;
}

.headerLogo {
    padding-top: -10px;
}

.header {
    max-width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.headerLeft {
    max-width: 100%;
    height: auto;
    display: block;
}

.headerLeft img {
    padding: 17px;
}

.headerCenter {
    flex: 1;
    text-align: center;
}

@media (max-width: 600px) {
    .header {
        flex-wrap: wrap-reverse;
    }
    .headerLeft {
        display: none;
    }
    .headerRight {
        text-align: center;
        width: 100%;
    }
}

.headerRight {
    padding-right: 20px;
}
