body {
    width: 100vw;
    min-height: 100vh;
    font-family: 'Comic Neue', cursive !important;
    color: white !important;
    overflow-x: hidden;
}

.maxheight {
    min-height: 100vh;
}

.section {
    width: 100vw;
    height: 100vh;
    overflow-y: scroll;
}

.gradientbackground {
    background: linear-gradient(-45deg, #321948, #274869, #1B7A8D, #0EB2B5);
    background-size: 400% 400%;
    animation: 10s ease 0s infinite gradient;
}

.bg-all {
    background-color: coral !important;
    color: black;
}


.highlighted {
    color: coral;
}

.test {
    box-sizing: border-box;
    border: 1px solid black;
}


.anchor {
    position: relative;
}

.levy {
    position: absolute;
    top: 0;
    left: 0;
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
}

.levy::-webkit-scrollbar {
    display: none;
}


.botlevy {
    position: sticky;
    bottom: 50px;
}

.blinkbox {
    width: 50px;
    height: 50px;
    background-color: white;
    animation: 1s ease 0s infinite Blinkeffect;
}

a {
    text-decoration: none;
}

.iconimg {
    width: 50px;
    height: auto;
    transition: 0.5s;
}

.iconimg:hover {
    transform: scale(1.1);
    transition: 0.5s;
}


.navbutton {
    background-color: transparent;
    border-radius: 25px;
    border: 3px solid white;
    transition: 0.5s;
    cursor: pointer;
    font-weight: bold;
}

.navbutton:hover {
    background-color: white;
    color: black;
    transition: 0.5s;
}

.backbutton {
    width: 75px;
    height: 75px;
    border-radius: 25px;
    border: 3px solid white;
    transition: 0.5s;
    cursor: pointer;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fancybox {
    background-color: rgb(51, 51, 51);
}

.backbutton:hover {
    background-color: white;
    color: black;
    transition: 0.5s;
}

.standardimage {
    height: auto;
    width: 100%;
}

.clickableimage {
    transition: 0.5s;
    cursor: pointer;
    filter: grayscale(1);
}

.clickableimage:hover {
    transition: 0.5s;
    filter: grayscale(0);
}

.bottomline {
    border-bottom: 3px solid white !important;
    border-radius: 25px;
}

.leftline {
    border-left: 3px solid white !important;
}

.hideoritillscroll {
    opacity: 0;
}

.section:nth-child(2) {
    background-color: black;
    z-index: 10;
}

.section:nth-child(3) {
    background-color: #321948;
    z-index: 10;
}

.section:nth-child(4) {
    background-color: #274869;
    z-index: 10;
}

.section:nth-child(5) {
    background-color: #1B7A8D;
    z-index: 10;
}

.selectable {
    cursor: pointer
}

.unactivated {
    opacity: 0.5;
    transition: 0.5s;
}

.unactivated:hover {
    opacity: 1;
    transition: 0.5s;
}

.fadetoright1 {
    animation: 1s ease-in-out 0s 1 forwards slidetoRight;
}

.fadefromleft1 {
    animation: 1s ease-in-out 0s 1 forwards slideInFromLeft;
}

.fadefromleft2 {
    animation: 1s ease-in-out 0.2s 1 forwards slideInFromLeft;
}

.fadefromleft3 {
    animation: 1s ease-in-out 0.4s 1 forwards slideInFromLeft;
}

.fadefromleft4 {
    animation: 1s ease-in-out 0.6s 1 forwards slideInFromLeft;
}

.fadefromtop1 {
    animation: 1s ease-in-out 0s 1 forwards slideInFromTop;
}

.fadefromtop2 {
    animation: 1s ease-in-out 0.2s 1 forwards slideInFromTop;
}

.fadefromtop3 {
    animation: 1s ease-in-out 0.4s 1 forwards slideInFromTop;
}

.fadefromtop4 {
    animation: 1s ease-in-out 0.6s 1 forwards slideInFromTop;
}

.fadein {
    animation: 1s ease-in-out 0s 1 forwards FadeIn;
}

.fadeout {
    animation: 1s ease-in-out 0s 1 forwards FadeOut;
}


@keyframes slideInFromLeft {
    0% {
        opacity: 0;
        transform: translateX(-100%);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slidetoRight {
    0% {
        opacity: 1;
        transform: translateX(0);
        display: flex;
    }

    100% {
        opacity: 0;
        transform: translateX(-100%);
        display: none;
    }
}

@keyframes slideInFromTop {
    0% {
        opacity: 0;
        transform: translateY(-100%);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes FadeIn {
    0% {
        opacity: 0;

    }

    100% {
        opacity: 1;

    }
}

@keyframes Blinkeffect {
    0% {
        opacity: 0;

    }

    50% {
        opacity: 1;

    }

    100% {
        opacity: 0;

    }
}

@keyframes FadeOut {
    0% {
        opacity: 1;

    }

    100% {
        opacity: 0;

    }
}


@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}