body {
    margin: 0;

    overflow-y: hidden;

    font-family: "Bebas Neue", sans-serif;
    font-weight: 400;
    font-style: normal;

    background: #e71d2e;
    color: white;

    user-select: none;
    -webkit-tap-highlight-color: transparent;

}

h2 {
    margin: 0;
}

#page-wrapper > .swiper-slide {
    overflow: hidden;
}

.swiper-button-next {
    animation-name: buttonPulsing;
    animation-duration: 2s;
    animation-iteration-count: infinite;
}

@keyframes buttonPulsing {
    from {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    to {
        transform: scale(1);
    }
}

.swiper-button-disabled{
    display:none;
}

.swiper-slide.page {
    position: relative;
    width: 100vw;
    height: 100vh;
}

#president-img {
    position: absolute;

    bottom: 0;
    left: 50%;
    translate: -50% 0;

    height: 85vh;
    aspect-ratio: auto;
}

#red-background {
    background-color: #e71d2e;

    position: absolute;
    left: 0;
    z-index: -1;

    height: 100%;
    width: 50vw;
}

#blue-background {
    background-color: #0b1836;

    position: absolute;
    right: 0;
    z-index: -1;

    height: 100%;
    width: 50vw;
}

#for-president-heading {
    width: 100vw;

    position: absolute;
    bottom: 25%;
    left: 50%;
    translate: -50% 0;

    font-size: 110px;
    text-align: center;

    text-shadow: black 5px 5px 5px;
}

#event-countdown {
    position: absolute;
    top: 3%;
    left: 50%;
    translate: -50% 0;

    font-size: 90px;

    letter-spacing: 5px;
}

#quotes {
    position: absolute;

    bottom: 0;
    left: 50%;
    translate: -50% 0;

    width: 100vw;
    height: 25%;

    display: flex;
    align-items: center;
}

#quotes-wrapper {
    height: 100%;

    display: flex;
    align-items: center;
}

.quote {
    font-size: 75px;
    text-align: center;

    height: auto;
}

.name-wrapper {
    transition-timing-function: linear !important;
}

.name-slide {
    width: auto;

    font-size: 60px;
    text-wrap: nowrap;
}

.swiper.name-swiper:first-child {
    position: absolute;
    top: 3%;

    width: 100%;
}

.swiper.name-swiper:last-child {
    position: absolute;
    bottom: 3%;

    width: 100%;
}

.swiper#event-swiper {
    position: absolute;
    top: 50%;
    left: 50%;
    translate: -50% -50%;

    width: 100%;
    height: 60%;
}

.event-slide {
    font-size: 60px;
    text-align: center;

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

    height: 100px;
}

#youtube-slide {
    height: 100vh;
    position: relative;
}

#youtube-slide a {
    text-decoration: none;
    text-align: center;
    text-wrap: nowrap;
    color: white;

    font-size: 60px;

    position: absolute;
    top: 50%;
    left: 50%;
    translate: -50% -50%;
}

@keyframes letter-pulsing {
    from {
        scale: 1;
    }

    50% {
        scale: 1.1;
    }

    to {
        scale: 1;
    }
}

#button-press-counter {
    position: absolute;
    left: 50%;
    translate: -50% 0;

    font-size: 100px;
}

#button {
    position: absolute;
    top: 50%;
    left: 50%;
    translate: -50% -50%;

    font-size: 60px;
    text-wrap: nowrap;

    background: #0b1836;

    width: 300px;
    aspect-ratio: 1;
    border-radius: 100%;

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

    box-shadow: black 0 0 20px 5px;

    animation-name: buttonPulsing;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-play-state: running;

    cursor: pointer;

    transition: transform 0.1s ease;
}

#button:active {
    animation-play-state: paused;
    transform: scale(0.9);
}

.random-btn {
    width: 50px !important;

    font-size: 15px !important;

    box-shadow: black 0 0 10px 3px !important;

    translate: 0 0 !important;
}

.swiper-button {

}

@keyframes buttonPulsing {
    from {
        scale: 1;
    }

    50% {
        scale: 1.1;
    }

    to {
        scale: 1;
    }
}

@media screen and (max-width: 450px) {
    #for-president-heading {
        font-size: 80px;

        bottom: 30%;
    }

    #event-countdown {
        font-size: 55px;

        top: 5%;
    }

    #quotes {
        height: 23%;
    }

    .quote {
        font-size: 50px;
    }

    .event-slide {
        font-size: 30px;
    }

    #youtube-slide a {
        font-size: 35px;
    }
}