.wide-container {
    max-width: 90vw;
    margin-inline: auto;
    position: relative;

    animation: fade-in 0.35s;
}

/* 
I have no idea why the half, third, and quarter containers are not actually
a half, third, and quarter of the screen but this is the only way it works.
*/

.half-container {
    display: inline-block;
    margin-inline: auto;
    max-width: 30vw;
    height: fit-content;
    vertical-align: top;
    text-align: left;
}

.third-container {
    display: inline-block;
    margin-inline: auto;
    max-width: 24vw;
}

.quarter-container {
    display: inline-block;
    margin-inline: auto;
    max-width: 18vw;
}

.center-flex-container {
    width: 90vw;
    
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-direction: row;
}

.flex-height-limit {
    height: 40vw; 
    overflow: hidden;
}

.two-flex {
    width: 50%;
}

.three-flex {
    width: 33.33%;
    align-self: center;
}

.left-content {
    display: inline-block;
    width: 40%;
    vertical-align: top;
    text-align: left;
}

.right-content {
    display: inline-block;
    width: 40%;
    vertical-align: top;
    text-align: right;
}

p.normal-text {
    line-height: 1.75rem;
    font-size: 1.15rem;
    margin-top: 32px;
    margin-bottom: 32px;
}

.horizontal-spacer {
    display: inline-block;
    min-width: 72px;
}

/* Oh my god I spelled "vertical" wrong and now I can't fix it */
.verticle-spacer {
    min-height: 72px;
}

.scaleable-img {
    width: 80%;
}

.big-scaleable-img {
    width: 90%;
}

.collapsible {
    max-height: 0;
    overflow: hidden;

    transition: max-height 0.5s ease-in-out;
}

.show-collapsible {
    max-height: fit-content !important;
}

.review-head {
    margin-bottom: 4px;
}

.date {
    margin-top: 4px;
    margin-bottom: 4px;
}

.review-body {
    margin-top: 8px;
    margin-bottom: 36px;
    font-size: 1.2rem;
    font-style: italic;
}

@keyframes fade-in {
    from {opacity: 0;}
    to {opacity: 1;}
}

@media screen and (max-width: 1000px) {
    .left-content {
        width: 100%;
    }

    .right-content {
        width: 100%;
    }

    .scaleable-img, .big-scaleable-img, .full-scaleable-img {
        width: 100%;
    }

    .third-container, .quarter-container {
        max-width: 90vw;
    }

    .center-flex-container {
        flex-direction: column;
    }

    .flex-height-limit {
        height: fit-content;
    }

    .two-flex {
        width: 100%;
    }

    .three-flex {
        width: 100%;
        overflow: hidden;
        align-self: center;
    }
}