@font-face {
    font-family: 'cyber';
    src: url('../fonts/punk.ttf');
}

body{
    margin: 0px;
    background-color: #1a1a1a !important;
    color: white !important;
    overflow-x: hidden;

    background-image: url("../imgs/videos/videos_bg.png");

    cursor: url("../cur/vids/NORMAL.cur") 25 15, default;

    h1, h2, h3, h4, h5, p{
        cursor: url("../cur/vids/TEXT.cur") 25 15, text;
    }

    a{
        cursor: url("../cur/vids/LINK.cur") 25 15, pointer;
    }
}

.header{
    margin: 0px;
    padding-bottom: 5px;
    background-color: white;
    text-align: center;
    transition: filter 0.5s ease;
    position: relative;

    .eye{
        margin-top: 10px;
        height: 50px;
    }

    .pupil{
        width: 80px;
        height: 50px;
        filter: invert();

        position: absolute;
        left: 50%;
        top: 55%;
    }

    &:hover{
        filter: invert();
    }
}


#titleContainer{
    text-align: center;
    margin-top: 7.5%;
    margin-bottom: 3%;

    font-family: 'cyber';

    #title{
        font-size: 82px;
        will-change: text-shadow, scale;
        animation: rgbText 1s steps(9) 0s infinite alternate;
        filter: brightness(90%);
        rotate: 3.5deg;
    }
}

.content-container{
    margin-left: 3%;
    margin-right: 3%;
    column-count: 3;
    column-gap: 30px;
}

@media only screen and (max-width: 1500px){
  .content-container{
    column-count: 2;
  }
}
@media only screen and (max-width: 850px){
  .content-container{
    column-count: 1;
  }
}

.item{
    display: inline-block;
    width: 100%;
    margin-bottom: 5%;
    transition: filter 0.25s ease;
    box-shadow: 0px 0px 35px black;

    &:hover{
        filter: brightness(125%);
    }
}

@keyframes rgbText {
  0% {
    text-shadow: -1px 1px 8px rgba(255, 255, 255, 0.6), 1px -1px 8px rgba(255, 255, 235, 0.7), 0px 0 1px rgba(251, 0, 0, 0.8), 0 0px 3px rgba(0, 0, 0, 0.8), 0px 0 3px rgba(255, 72, 72, 0.8), 0 0px 3px rgba(244, 45, 0, 0.8), 0px 0 3px rgba(59, 0, 226, 0.8);
  }
  25% {
    text-shadow: -1px 1px 8px rgba(255, 255, 255, 0.6), 1px -1px 8px rgba(255, 255, 235, 0.7), 0px 0 1px rgba(251, 0, 0, 0.8), 0 0px 3px rgba(0, 0, 0, 0.8), 0px 0 3px rgba(255, 72, 72, 0.8), 0 0px 3px rgba(244, 45, 0, 0.8), 0px 0 3px rgba(59, 0, 226, 0.8);
  }
  45% {
    text-shadow: -1px 1px 8px rgba(255, 255, 255, 0.6), 1px -1px 8px rgba(255, 255, 235, 0.7), 5px 0 1px rgba(251, 0, 0, 0.8), 0 5px 1px rgba(0, 0, 0, 0.8), -5px 0 1px rgba(255, 72, 72, 0.8), 0 -5px 1px rgba(244, 45, 0, 0.8), 5px 0 1px rgba(59, 0, 226, 0.8);
  }
  50% {
    text-shadow: -1px 1px 8px rgba(255, 255, 255, 0.6), 1px -1px 8px rgba(255, 255, 235, 0.7), -5px 0 1px rgba(251, 0, 0, 0.8), 0 -5px 1px rgba(0, 0, 0, 0.8), 5px 0 1px rgba(255, 72, 72, 0.8), 0 5px 1px rgba(244, 45, 0, 0.8), -5px 0 1px rgba(59, 0, 226, 0.8);
  }
  55% {
    text-shadow: -1px 1px 8px rgba(255, 255, 255, 0.6), 1px -1px 8px rgba(255, 255, 235, 0.7), 0px 0 3px rgba(251, 0, 0, 0.8), 0 0px 3px rgba(0, 0, 0, 0.8), 0px 0 3px rgba(255, 72, 72, 0.8), 0 0px 3px rgba(244, 45, 0, 0.8), 0px 0 3px rgba(59, 0, 226, 0.8);
  }
  90% {
    text-shadow: -1px 1px 8px rgba(255, 255, 255, 0.6), 1px -1px 8px rgba(255, 255, 235, 0.7), -5px 0 1px rgba(251, 0, 0, 0.8), 0 5px 1px rgba(0, 0, 0, 0.8), 5px 0 1px rgba(255, 72, 72, 0.8), 0 -5px 1px rgba(244, 45, 0, 0.8), 5px 0 1px rgba(59, 0, 226, 0.8);
  }
  100% {
    text-shadow: -1px 1px 8px rgba(255, 255, 255, 0.6), 1px -1px 8px rgba(255, 255, 235, 0.7), 5px 0 1px rgba(251, 0, 0, 0.8), 0 -5px 1px rgba(0, 0, 0, 0.8), -5px 0 1px rgba(255, 72, 72, 0.8), 0 5px 1px rgba(244, 45, 0, 0.8), -5px 0 1px rgba(59, 0, 226, 0.8);
  }
}


