.hidden {
    display: none !important;
}

.visible {
    display: flex !important;
}

.mobileMenu {
    position: absolute;
    top: calc(100% - 45px);
    left: 90vw;
    z-index: 10;
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 4px;
    display: none;
    cursor: pointer;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
}

.bar1,
.bar2,
.bar3 {
    width: 35px;
    height: 5px;
    background-color: #f5f5f5;
    border-radius: 2px;
    margin: 6px 0;
    transition: 0.4s;
}

.change .bar1,
.change .bar3 {
    background-color: #e06a6a;
}

/* Rotate first bar */
.change .bar1 {
    -webkit-transform: rotate(-45deg) translate(-9px, 6px);
    transform: rotate(-45deg) translate(-9px, 6px);
}

/* Fade out the second bar */
.change .bar2 {
    opacity: 0;
}

/* Rotate last bar */
.change .bar3 {
    -webkit-transform: rotate(45deg) translate(-8px, -8px);
    transform: rotate(45deg) translate(-8px, -8px);
}

@media (max-width: 600px) {

    .toggleScreen {
        top: calc(100% - 50px);
        width: 4vh;
        height: 4vh;
        margin-top: 1.8vw;
        margin-left: 2vh;
        border-radius: 5px;
        background-color: rgba(0, 0, 0, 0.6);
    }

    .mobileMenu {
        display: inline-block;
    }

    .myCountdown {
        top: 0.8vh !important;
        padding: 2px;
        border-radius: 4px;
        min-width: 180px;
    }

    .navbar {
        display: none;
        width: 100vw;
        height: 100vh;
        max-height: none;
    }

    .navbar ul {
        background-color: #181a22;
        flex-direction: column-reverse;
        justify-content: flex-start;
        align-content: center;
        overflow-y: auto;
    }

    .navbar ul li {
        margin: 5px auto;
        padding: 5px;
    }

    .navbar ul li:first-child {
        padding-bottom: 50px;
    }
    .navbar ul li:last-child {
        padding-top: 50px;
    }

    .navbar ul li a {
        font-size: xx-large;
    }

    section .content {
        background-color: rgba(0, 0, 0, 0.6);
    }

    section .spacer {
        display: none;
    }
}