.spacer {
    display: inline-block;
    min-width: 1vw;
}

.big-spacer {
    display: inline-block;
    min-width: 6vw;
}

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

.verticle-spacer {
    min-height: 100px;
}

.big-verticle-spacer {
    min-height: 15vw;
}

.main-content {
    max-width: 90vw;
    margin-top: 50px;
    margin-inline: auto;
    text-align: center;

    animation: fade-in 1s;
}

.secondary-content {
    max-width: 70vw;
    margin-inline: auto;
    text-align: center;
    min-height: fit-content;
}

.secondary-content * {
    text-align: left;
}

.secondary-content h2 {
    font-family: "Miltona", serif;
    font-size: 3rem;

    margin-bottom: 0;
    margin-top: 0;
}

.secondary-content p {
    line-height: 1.5rem;
    font-weight: 600;
}

.container {
    display: inline-block;
    width: fit-content;
    height: fit-content;

    margin-bottom: 68px;
}

.container h3 {
    font-family: "Miltona"; 
    font-size: 2.35rem;

    margin-top: 0px;
    margin-bottom: 36px;
}

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

.dim {
    background-color: var(--dim-white);
}

.image-container {
    margin: 0;
    max-width: 50vw;
    display: inline-block;
    width: min-content;
    height: min-content;

    overflow: hidden;
}

.img-zoom {
    transition: scale 0.5s;
    scale: 1.02;
}

.img-zoom:hover {
    transition: scale 0.35s;
    scale: 1.15;
}

.quote {
    font-weight: 300 !important;
}

.scaleable-img {
    width: 38vw;
    max-width: 600px;
}

.small-scaleable-img {
    width: 28vw;
    max-width: 600px;
    min-width: 400px;
}

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

@media screen and (max-width: 1000px) {
    .secondary-content {
        max-width: 90vw;
    }

    .half-container {
        max-width: 98vw;
    }

    .image-container {
        text-align: center;
        max-width: 95vw;
    }

    .scaleable-img {
        width: 80vw;
        text-align: center;
    }

    .small-scaleable-img {
        width: 85vw;
        min-width: unset;
        text-align: center;
    }
}