body
{
    margin: 0;
    padding: 0;
    width: 100%;
    background-color: rgb(17, 16, 16);
    color: rgba(50, 255, 0, 0.5);
    font-family: "VT323", monospace;
}

.Container::after
{
    content: " ";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    opacity: 0;
    z-index: 2;
    pointer-events: none;
}
.Container::before
{
    content: " ";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.25) 50%), linear-gradient(90deg, rgba(255, 0, 0, 0.06), rgba(0, 255, 0, 0.02), rgba(0, 0, 255, 0.06));
    z-index: 2;
    background-size: 100% 2px, 3px 100%;
    pointer-events: none;
    /* animation: flicker 1s infinite; */
}

.Container
{
    display: flex;
    justify-content: center;
    text-shadow: 0.4389924193300864px 0 1px rgba(0,30,255,0.5), -0.4389924193300864px 0 1px rgba(255,0,80,0.3), 0 0 3px;
    height: 100%;
}

.Content
{
    animation: on 3s;
}

.Link
{
    color: rgba(38, 168, 5, 0.63);
    text-decoration: none;
    cursor: pointer;
}

.SmallHeader
{
    font-size: 5px;
    cursor: pointer;
}

.DazzleMe
{
    animation: glitch 2s infinite;
    margin-top: 30px;
    display: block;
    margin-bottom: 30px;
}

.DazzleMeDiv
{
    margin-top: 30px;
    margin-bottom: 30px;
}

#VideoFrame
{
    width: 80vw;
    height: 50vw;
    max-width: 700px;
    max-height: 500px;
}

.Footer
{
    margin-top: 60px;
    font-size: 0.7em;
    opacity: 0.6;
}

@media only screen and (max-width: 600px)
{
    body
    {
        font-size: 0.9em;
    }

    .Container
    {
        position: fixed;
        width: 100%;
        height: 100%;
    }

    .Content
    {
        position: relative;
        padding: 20px;
    }
}

@keyframes textShadow {
    0%
    {
        text-shadow: 0.4389924193300864px 0 1px rgba(0,30,255,0.5), -0.4389924193300864px 0 1px rgba(255,0,80,0.3), 0 0 3px;
    }

    35%
    {
        text-shadow: 3.896914047650351px 0 1px rgba(0,30,255,0.5), -3.896914047650351px 0 1px rgba(255,0,80,0.3), 0 0 3px;
    }
    40%
    {
        text-shadow: 3.870905614848819px 0 1px rgba(0,30,255,0.5), -3.870905614848819px 0 1px rgba(255,0,80,0.3), 0 0 3px;
    }
    45%
    {
        text-shadow: 2.231056963361899px 0 1px rgba(0,30,255,0.5), -2.231056963361899px 0 1px rgba(255,0,80,0.3), 0 0 3px;
    }
    50%
    {
        text-shadow: 0.08084290417898504px 0 1px rgba(0,30,255,0.5), -0.08084290417898504px 0 1px rgba(255,0,80,0.3), 0 0 3px;
    }
    65%
    {
        text-shadow: 2.8638780614874975px 0 1px rgba(0,30,255,0.5), -2.8638780614874975px 0 1px rgba(255,0,80,0.3), 0 0 3px;
    }
    70%
    {
        text-shadow: 0.48874025155497314px 0 1px rgba(0,30,255,0.5), -0.48874025155497314px 0 1px rgba(255,0,80,0.3), 0 0 3px;
    }
    75%
    {
        text-shadow: 1.8948491305757957px 0 1px rgba(0,30,255,0.5), -1.8948491305757957px 0 1px rgba(255,0,80,0.3), 0 0 3px;
    }
    80%
    {
        text-shadow: 0.0833037308038857px 0 1px rgba(0,30,255,0.5), -0.0833037308038857px 0 1px rgba(255,0,80,0.3), 0 0 3px;
    }
    85%
    {
        text-shadow: 0.09769827255241735px 0 1px rgba(0,30,255,0.5), -0.09769827255241735px 0 1px rgba(255,0,80,0.3), 0 0 3px;
    }
    90%
    {
        text-shadow: 3.443339761481782px 0 1px rgba(0,30,255,0.5), -3.443339761481782px 0 1px rgba(255,0,80,0.3), 0 0 3px;
    }
    95%
    {
        text-shadow: 2.1841838852799786px 0 1px rgba(0,30,255,0.5), -2.1841838852799786px 0 1px rgba(255,0,80,0.3), 0 0 3px;
    }
    100%
    {
        text-shadow: 2.6208764473832513px 0 1px rgba(0,30,255,0.5), -2.6208764473832513px 0 1px rgba(255,0,80,0.3), 0 0 3px;
    }
}

@keyframes on {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes glitch {
    30% {
    }
    40% {
        opacity: 1;
        transform: scale(1, 1);
        transform: skew(0, 0);
    }
    41% {
        opacity: 0.8;
        transform: scale(1, 1.2);
        transform: skew(80deg, 0);
    }
    42% {
        opacity: 0.8;
        transform: scale(1, 1.2);
        transform: skew(-50deg, 0);
    }
    43% {
        opacity: 1;
        transform: scale(1, 1);
        transform: skew(0, 0);
    }
    65% {
    }
}

.Yecinwivtwm {
    color: rgba(50, 255, 0, 0.5);
}

.cbeiwoc {
    display: none;
}