@font-face {
    font-family: Montserrat;
    src: url(/static/fonts/Montserrat-VariableFont_wght.ttf);
}

@font-face {
    font-family: SourceSans3;
    src: url(/static/fonts/SourceSans3-Medium.ttf);
}

@font-face {
    font-family: SourceSans3Bold;
    src: url(/static/fonts/SourceSans3-Bold.ttf);
}

.centered {
    display: flex;
    align-items: center;
    justify-content: center;
}

.titleContainer {
    width: 100vw;
    height: 100%;
}

.title {
    text-align: center;
    font-size: 10vmin;
    font-family: Montserrat;
    color: white;
    text-shadow: 0 0 5px #111;
    transform: translateY(-50%);
    /*-webkit-text-stroke-width: 1.5px;
    -webkit-text-stroke-color: black;*/
}

.active {
  opacity: 1;
}

.topbar {
    background-color: #111;
    position: sticky;
    top: 0;
    height: 8%;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 0 5px #111;
}

.topbarImage {
    height: 50%;
    transform: translateY(50%);
}

.wrapper {
    height: 100vh;
    overflow-y: auto;
    overflow-x: hidden;
    perspective: 10px;
}

.background {
    filter: blur(2px);
    opacity: 0;
    position: absolute;
    height: 100%;
    width: 110%;
    object-fit: cover;
    z-index: -5;
    transition: opacity 1s linear;
}

.showing {
    opacity: 1;
}

.foreground {
    aspect-ratio: 2 / 1;
    position: absolute;
    height: 300px;
    max-width: 40%;
    top: 5%;
    object-fit: scale-down;
    z-index: -1;
}

.sectionBackground {
    background-color: #111;
    font-size: 1.25rem;
    width: 40em;
    max-width: 90%;
}

.overlay {
    position:relative;
    top: 1000%;
} .overlay::before {
    color: rgb(255, 255, 255,1);
    scale: 90%;
}

.regionContainer {
    position: relative;
    text-align: center;
    justify-content: center;
    font-size: 1.2vmax;
    font-family: Montserrat;
    color: white;
    text-shadow: 0 0 5px #111;
    width: 100vw;
    bottom: 50%;
    z-index: 1;
}

.discordTop {
    width: 100vw;
    position: relative;
    display: flex;
    grid-column-gap: 2vh;
    z-index: 1;
    bottom: 40vh;
}

.discordBottom {
    width: 100vw;
    position: relative;
    display: flex;
    grid-column-gap: 2vh;
    z-index: 1;
    bottom: 38vh;
    }

.discordButtons {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #ffbe2c;
    color: #111;
    border: none;
    font-family: SourceSans3Bold;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0 1.3vh;
    aspect-ratio: 4 / 3;
    box-shadow: 0 0 5px #111;
}

.btop {
    transform: translateY(50%);
}

.bbottom {
    bottom: 30%;
}

/* change to active if you want idk */
.discordButtons:hover {
    background-color: #ffd16a;
}

.downPointer {
    background-color: rgba(0,0,0,0.0);
    position:absolute;
    border: none;
    padding: 15px 15px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
}
/*#endregion*/

.hidden {
    opacity: 0;
    transition: all 2s cubic-bezier(.42, 0, 1, 1);
} .show {
    opacity: 1;
}

.discord {
    font-size: 2.25rem;
}

main {
    background-color: #111;
    display: flex;
    align-items: center;
    justify-content: center;
}

*, html {
    scroll-behavior: smooth !important;
    overflow: hidden;
}

p {
    font-family: SourceSans3;
    font-size: 1.25rem;
    text-align: justify;
}

a {
    font-family: SourceSans3;
    color: #5693a5;
}

h3 {
    font-family: SourceSans3Bold;
    font-size: 2.25rem;
}

header {
    height: 80%;
    transform-style: preserve-3d;
    z-index: -1;
}

header:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: .3;
    z-index: -1;
}

body {
    margin: 0;
    background-color: #111;
}

iframe {
    aspect-ratio: 16 / 9;
    margin-top: 10px;
    margin-bottom: 20px;
}

section {
    font-size: 2rem;
    color: white;
    position: relative;
}

/* will make this look better later,
** hiding for now. */
footer {
    hidden: true;
}
