body {
    margin: 0;
    padding: 0;
    text-align: center;
    font-family: "Rubik", sans-serif;
    font-optical-sizing: auto;
    font-size: 18px;
    font-weight: 100;
    font-style: normal;
    color: #fff;
}

a {
    text-decoration: none;
}

.body {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
}

.backgroundVideo {
    left: 0;
    top: 0;
    position: fixed;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.contentOverlay {
    left: 0;
    top: 0;
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: #000;
    opacity: 0.7;
}

.contentContainer {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    flex-direction: column;
    opacity: 1;
    transition: all .2s ease-in;
}

.contentContainer .logo, .contentContainer .logoBmm2024 {
    max-width: 350px;
    padding: 0 50px;
}

.contentContainer .logo img, .contentContainer .logoBmm2024 img {
    width: 100%;
}

.contentContainer .content h1 {
    font-size: 32px;
    font-weight: 400;
    margin: 40px 5px 5px 5px;
}

.contentContainer .content p {
    font-weight: 100;
    max-width: 350px;
    padding: 0 50px;
    margin: 5px 0;
}

.contentContainer .content p strong {
    font-weight: 400;
}

.contentContainer .contentBmm2024 {
    display: flex;
    margin: 20px 0;
    align-items: center;
    justify-content: center;
}

.contentContainer .contentBmm2024 a img {
    height: 40px;
    padding: 0 5px;
}

.contentContainer .socialContainer {
    display: flex;
    flex-direction: row;
    margin-top: 20px;
    opacity: 0.8;
}

.contentContainer .socialContainer a {
    margin: 0 5px;
}

.contentContainer .socialContainer a.insta {
    display: block;
    width: 40px;
    height: 40px;
    background: url('../../static/img/insta.svg') center center no-repeat;
}

.contentContainer .socialContainer a.insta:hover {
    background: url('../../static/img/instaHover.svg') center center no-repeat;
}

.contentContainer .socialContainer a.fb {
    display: block;
    width: 40px;
    height: 40px;
    background: url('../../static/img/fb.svg') center center no-repeat;
}

.contentContainer .socialContainer a.fb:hover {
    background: url('../../static/img/fbHover.svg') center center no-repeat;
}

.contentContainer .socialContainer a.youtube {
    display: block;
    width: 40px;
    height: 40px;
    background: url('../../static/img/youtube.svg') center center no-repeat;
}

.contentContainer .socialContainer a.youtube:hover {
    background: url('../../static/img/youtubeHover.svg') center center no-repeat;
}

.contentContainer .socialContainer a.discord {
    display: block;
    width: 40px;
    height: 40px;
    background: url('../../static/img/discord.svg') center center no-repeat;
}

.contentContainer .socialContainer a.discord:hover {
    background: url('../../static/img/discordHover.svg') center center no-repeat;
}

.body .footer {
    position: fixed;
    bottom: 5px;
    left: 0;
    width: 100%;
    text-align: center;
    font-size: 11px;
}

.scheduleContainer {
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    flex-direction: column;
    opacity: 0;
    transition: all .2s ease-in;
    display: none;
}

.scheduleContainer.animate {
    transition: all .2s ease-in;
    top: 0;
    opacity: 1;
    display: flex;
}

.contentContainer.animate {
    transition: all .2s ease-in;
    opacity: 0;
}

.scheduleContainer .landscape, .scheduleContainer .portrait {
    display: none;
    background: rgba(0, 0, 0, 0.3);
    padding: 10px;
    z-index: 3;
    box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.7);
}

.scheduleButton {
    text-transform: uppercase;
    cursor: pointer;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: #000;
    opacity: 0.8;
    z-index: 4;
    padding: 15px 0;
    color: #f6f301;
}

.scheduleButton span {
    animation: flickerAnimation 2s infinite ease-in-out;
}

@keyframes flickerAnimation {
    0%   { color: #f6f301; }
    50%  { color: #ffffff; }
    100% { color: #f6f301; }
}

.scheduleButton .on {
    display: none;
}

.scheduleButton.animate .on {
    display: block;
}

.scheduleButton.animate .off {
    display: none;
}

@media (orientation: landscape) {

    .scheduleContainer .landscape {
        display: block;
        max-height: 70%;
        max-width: 90%;
    }

}

@media (orientation: portrait) {

    .scheduleContainer .portrait {
        display: block;
        max-width: 90%;
        max-height: 90%;
    }
}

@media only screen and (max-height: 500px) {

    body {
        font-size: 14px; 
    }

    .contentContainer .logo, .contentContainer .logoBmm2024 {
        max-width: 220px;
        padding: 0 20px;
    }

    .contentContainer .content h1 {
        margin-top: 10px;
        font-size: 24px;
    }

    .contentContainer .socialContainer {
        margin-top: 10px;
    }

    .body .footer {
        bottom: 2px;
    }

}

@media only screen and (max-width: 600px) {
    body {
        font-size: 14px; 
    }

    .contentContainer .content h1 {
        font-size: 24px;
    }

}

@media only screen and (min-width: 600px) {

    .scheduleContainer .landscape {
        max-width: 800px;
    }
    
    .scheduleContainer .portrait {
        max-width: 400px;
    }

}

.glitchContainer {
    position: relative;
    display: flex;
}

.glitchContainer #canvas {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
    animation: turnOn 100ms ease-in 500ms forwards;
    opacity: 0.7;
}

.glitchContainer img {
    animation: flick 80ms linear infinite
}

.glitchContainer:hover #canvas {
    z-index: 0;
    opacity: 1;
    filter: saturate(5) hue-rotate(235deg);
}

