body {
    overflow-y: hidden;
}

#custom-cursor {
    width: 64px;
    height: 64px;
    position: absolute;
    background-size: cover;
    background-image: none;
    z-index: 9999;
    transform: translate(-30px, -15px);
}

.cursor-none:hover {
    cursor: none !important;
}

.answers>li>a {
    cursor: none !important;
}
.quiz-next-btn {
    cursor: none !important;

}


#start-screen {
    /* background-image: linear-gradient(to bottom, rgb(50, 43, 0), rgb(0, 0, 0)); */
    position: absolute;
    width: 98%;
    height: 98%;
    display: flex;
    border-radius: 40px;
}
#start-btn {
    background: none;
    border: none;
    cursor: none;
    padding-top: 40px;
    margin-bottom: 80px;
}
#START {
    font-size: 7em;
    color: #e83e8c;
    text-shadow: -2px -3px rgba(255, 255, 255, 0.649), 2px 3px rgb(0, 187, 255);
    font-family: "rixvideogame-pro", sans-serif;
    font-weight: 400;
    font-style: normal;
    display: none;
    animation: toggleOpacity 1s linear infinite;
}


@keyframes toggleOpacity {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 1;
    }
    51% {
        opacity: 0;
    }
    99% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}



#canvas-scroll {
    --mask: linear-gradient(to top, 
    rgba(0,0,0, 1) 0,   rgba(0,0,0, 1) 65%, 
    rgba(0,0,0, 0) 95%, rgba(0,0,0, 0) 0
) 100% 50% / 100% 100% repeat-x;
-webkit-mask: var(--mask); 
mask: var(--mask);
    /* border: 2px solid; */
    display: none;
    border-top-right-radius: 50px;
    border-top-left-radius: 50px;

}
/*  */

.cover-all {
    background: linear-gradient(to right, rgb(70, 0, 70), rgb(47, 66, 124));
    position: relative;
    width: 100vw;
    height: 100vh;

}

#filter {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url("img/grain.jpg");
    background-size:10%;
    opacity: 0.06;
    background-repeat: repeat;
    animation: bgMove 1s linear infinite;

}

@keyframes bgMove {
    0% {
        background-position: 0% 0%;
    }
    100% {
        background-position: 0% 100%;
    }
}


#slideshow{
    width: 60%;
    height: 90%;
    margin: 5%;
}
.slide {
    display: none;
    height: 100%;
    width: 100%;
    border-radius: 80px;
    background-image: linear-gradient(to right, rgb(181, 172, 172), lightgray);
    box-shadow: 10px 10px 60px 100px rgba(0, 0, 0, 0.717), 0px 0px 2px 5px rgb(255, 249, 249);
}
.swiper-slide {
    background-color: black !important;
}

.visible {
    display: block;
}
.slide-content {
    width: 80%;
}
.slide-content>p{
    text-align: justify;
    color: whitesmoke;
}

.inline-img {
    height: 100px;
    width: 100px;
    max-width: 100px;
    max-height: 100px;
    float: left;
}




/* spitesheet styles */
.sprite {
    background-image: url('img/spritesheet.png');
    background-repeat: no-repeat;
    display: block;
}



/* quiz stylesheet */
.quiz-container{padding:1em;max-width:100%;margin:1em auto}.quiz-container a{text-decoration:none;color:#333}.quiz-counter,.quiz-header,.quiz-results-screen,.quiz-start-screen{text-align:center}.question{font-size:1.25em}.answers{list-style:none;padding:0}.answers a{display:block;padding:.5em 1em;margin-bottom:.5em;background:#fff;border-radius:10px}.answers a.correct{background:#090}.answers a.incorrect{background:#c00}.answers a.correct,.answers a.incorrect{color:#fff}.quiz-controls{background:#333;color:#fff;padding:.5em 1em;text-align:center;border-radius:10px}.quiz-results{font-size:1.25em}.quiz-buttons a,.quiz-container .quiz-button{display:inline-block;padding:.5em 1em;background:#333;color:#fff;border-radius:10px}.quiz-buttons a{background:#fff;color:#333}.quiz-results-state .quiz-controls{background:0 0;padding:0}.quiz-results-state .quiz-buttons a{background:#333;color:#fff}



/* splitchar styles */
.horizontal {
    position:relative;
    display:inline-block;
    overflow:hidden;
    white-space: pre;
    color:transparent;
    font-family: "loos-extended", sans-serif;
    font-weight: 800;
    font-style: normal;
}
.horizontal:before {
    display:block;
    z-index:1;
    position:absolute;
    top:0;
    width: 70%;
    content: attr(data-content); 
    overflow:hidden;
    pointer-events: none; 
    color: rgb(255, 255, 255);
}
.horizontal:after {
    display:block;
    direction: rtl;
    position:absolute;
    z-index:2;
    top:0;
    left:70%;
    width: 30%;
    content: attr(data-content);
    overflow:hidden;
    pointer-events: none;
    color:  rgb(189, 189, 189);
}
.horizontal-tri {
    position:relative;
    display:inline-block;
    overflow:hidden;
    white-space: pre;
}
.horizontal-tri:before {
    display:block;
    z-index:1;
    position:absolute;
    top:0;
    width: 33%;
    content: attr(data-content); 
    overflow:hidden;
    pointer-events: none; 
}
.horizontal-tri:after {
    display:block;
    direction: rtl;
    position:absolute;
    z-index:2;
    top:0;
    left:68%;
    width: 33%;
    content: attr(data-content);
    overflow:hidden;
    pointer-events: none;
}
.vertical {
    position:relative;
    display:inline-block;
    overflow:hidden;
    white-space: pre;
    color: transparent;
}
.vertical:before {
    display:block;
    z-index:2;
    position:absolute;
    top:0;
    height: 50%;
    content: attr(data-content); 
    overflow:hidden;
    pointer-events: none; 
    color: #ecf0f1;
}
.vertical:after {
    display:block;
    direction: rtl;
    position:absolute;
    z-index:1;
    top:0;
    height:100%;
    left:0;
    content: attr(data-content);
    overflow:hidden;
    pointer-events: none;
    color: #bdc3c7;
}  
.vertical-tri {
    position:relative;
    display:inline-block;
    overflow:hidden;
    white-space: pre;
}
.vertical-tri:before {
    display:block;
    z-index:2;
    position:absolute;
    top:0;
    height: 33%;
    content: attr(data-content); 
    overflow:hidden;
    pointer-events: none; 
}
.vertical-tri:after {
    display:block;
    direction: rtl;
    position:absolute;
    z-index:1;
    top:0;
    height:66%;
    left:0;
    content: attr(data-content);
    overflow:hidden;
    pointer-events: none;
}  

@media only screen and (max-width: 600px) {
    .horizontal {
        font-size: 13px;
    }
    p {
      font-size: 10px;
    }
    code {
        display: none;
    }
    input {
        display: none;
    }
  }


