/* Page Configuration */

* {
    scroll-behavior: smooth;
}
html {
    height: 100%;
    box-sizing: border-box;
}
body {
    position: relative;
    min-height: 100%;
    box-sizing: inherit;
    margin: 0;
    background-color: #111111;
}
figure {
    margin: 0;
}

/* Default Elements*/
.parallax {
    height: 100vh;
    overflow-y: auto;
    overflow-x: hidden;
    perspective: 10px;
    width: 100%;
}
.backdrop {
    background-attachment: fixed;
    background-position: center;
    background-size: cover;

    display: flex;
    justify-content: center;
    align-items: center;

    transform: translateZ(-5px) scale(1.5);
    position: absolute;
    width: calc(100% + 10px);
    height: 100%;
    object-fit: cover;
    z-index: -1;
}
.mid-backdrop {
    transform: translateZ(-2.25px) scale(1.25);
    width: 100%;
    z-index: 0;
}
.section {
    background: linear-gradient(#171717, #212123, #171717);
    min-height: 500px;
    padding: 30px 40px;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}
@media (max-width: 767px) {
    .section {
        flex-direction: column;
        justify-content: center;
    }
}
.void {
    width: 100%;
    min-height: 25rem;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: relative;
}
@media (max-width: 480px) {
    .void {
        min-height: 15rem;
    }
}
.container {
    display: flex;
    justify-content: space-between;
    background-color: rgba(21,21,23,0.9);
    height: auto;
    width: 75%;
    border-radius: 50px;
    padding: 2rem;
    margin: 3rem 0;
    position: relative;
}
@media (max-width: 767px) {
    .container {
        flex-direction: column;
        align-items: center;
    }
}
.carousel {
    display: flex;
    align-items: center;
    justify-content: space-around;
    min-width: 100%;
}
.button {
    text-align: center;
    display: inline;
    text-decoration: none;
    box-sizing: border-box;

    font-size: 1.25rem;
    width: 12.5rem;
    height: 4rem;
    padding: 0.9375rem;
    border-radius: 10px;

    color: white;
    border: solid #af2d24 5px;
}
.button:hover {
    text-decoration: underline;
    background: linear-gradient(to right, #af2d24, #821e17, #af2d24);
    border: solid #821e17 3px;
    padding-top: 1.125rem;
}
.caption {
     display: flex;
     justify-content: space-between;
     align-items: center;
     flex-direction: column;
     background-color: rgba(21,21,23,0.7);
     height: auto;
     border-radius: 5px;

     padding: 0.3rem;
     font-size: 1rem;
     color: darkgray;

     position: absolute;
     bottom: 10px;
     right: 5px;
 }
.anchor {
    position: absolute;
    top: -80px;
}

/* Text Presets */
h1, h2, h4, h5, a, time {
    font-family: FiraSans, Arial, sans-serif;
}
p, h3, h6, label, figcaption, div {
    font-family: Heebo, Arial, sans-serif;
}
h1 {
    color: red;
    font-size: 2rem;

    font-weight: 700;
    margin: 0;
}
h2 {
    color: red;
    font-size: 3rem;

    font-weight: 900;
    margin: 0;

    align-self: start;
}
h3 {
    color: darkgray;
    font-size: 1.5rem;

    font-weight: 900;
    margin: 0;

    align-self: start;
}
h4 {
    color: white;
    font-size: 2rem;

    font-weight: 900;
    margin: 0;

    align-self: center;
}
h5 {
    color: darkgray;
    font-size: 1.25rem;

    font-weight: 900;
    margin: 0;

    align-self: start;
}
h6 {
    color: darkgray;
    font-size: 1.125rem;
}
time {
    color: white;
    font-size: 1.25rem;
    font-weight: 700;
}
p {
    color: darkgray;
    font-size: 1.25rem;
}
p a {
    color: darkgrey;
}
figcaption {
    color: darkgray;
    font-size: 1rem;
}
@media (max-width: 1023px) {
    h2 {
        font-size: 2rem;
    }
    h3 {
        font-size: 1.25rem;
    }
    h4 {
        font-size: 1.5rem;
    }
    h5 {
        font-size: 1rem;
    }
    h6 {
        font-size: 1rem;
    }
    p {
        font-size: 1rem;
    }
    time {
        font-size: 1rem;
    }
    figcaption {
        font-size: 0.875rem;
    }
    @media (max-width: 480px) {
        h2 {
            font-size: 1.5rem;
        }
        h3 {
            font-size: 1rem;
        }
        h4 {
            font-size: 1.25rem;
        }
        h5 {
            font-size: 0.75rem;
        }
        h6 {
            font-size: 0.75rem;
        }
        p {
            font-size: 0.75rem;
        }
        time {
            font-size: 0.75rem;
        }
        figcaption {
            font-size: 0.5rem;
        }
    }
}


/* Custom Scrollbar */
@media (min-width: 767px) {
    ::-webkit-scrollbar {
        width: 10px;
    }
    ::-webkit-scrollbar-track {
        background: #111111;
    }
    ::-webkit-scrollbar-thumb {
        background: #af2d24;
    }
    ::-webkit-scrollbar-thumb:hover {
        background: #821e17;
    }
}