@font-face { font-family: Apestron; src: url('/Assets/fonts/Apestron.ttf'); }
@font-face { font-family: Hatch; src: url('/Assets/fonts/Hatch.ttf'); }
@font-face { font-family: Glue; src: url('/Assets/fonts/Superglue.otf'); }
@font-face { font-family: AudioNugget; src: url('/Assets/fonts/AudioNugget.ttf'); }

:root {
    --primary: rgb(44, 95, 236);
}

body {
    background-color: white;
    background-image: none;
}

p {
    font-size: 20px;
    font-family: Apestron;
    color: var(--primary);
}

.flex-box {
    display: flex;
}

.art_title {
    position: absolute;
    z-index: 2;
    font-size: 40px;
    font-family: Glue;
    color: var(--primary);
    -webkit-text-stroke-width: 2.5px;
    -webkit-text-stroke-color: white;
    text-shadow: 0px 5px var(--primary);
    margin-top: 0px;
}

.art_title_big {
    position: absolute;
    z-index: 2;
    font-size: 60px;
    font-family: Glue;
    color: var(--primary);
    -webkit-text-stroke-width: 4px;
    -webkit-text-stroke-color: white;
    text-shadow: 0px 8px var(--primary);
    margin-top: 0px;
    width: 50%;
    text-align: center;
    line-height: 60px;
}

.art_area {
    margin-top: 15px;
    margin-bottom: 15px;

    padding: 0px 20px 20px 20px;
    width: 75%;
    max-width: 75%;
    margin-left: auto;
    margin-right: auto;

    border-width: 5px;
    border-style: solid;
    border-color: var(--primary);
    border-radius: 30px;
}

.margin {
    height: 5px;
    width: 90%;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
    background-color: var(--primary);

    margin-top: 30px;
    margin-bottom: 30px;
}

#circle {
    -webkit-mask-image: url(/Assets/Y2K/circle.png);
    mask-image: url(/Assets/Y2K/circle.png);
    mask-repeat: no-repeat;
    mask-size: 100%;
    background: var(--primary);
    width: 75px; 
    height: 75px;
}

#crosshairs {
    position: absolute;
    top: 200px;
    left: 40px;
    width: 100vw;
    height: 100vh;
    -webkit-mask-image: url(/Assets/Y2K/crosshairs.png);
    mask-image: url(/Assets/Y2K/crosshairs.png);
    mask-repeat: repeat;
    mask-size: 25%;
    background: var(--primary);
    z-index: -1;
    pointer-events: none;
}

#side_text {
    position: absolute;
    left: 0;
    top: -200vh;
    height: 300vh;
    width: 5%;
    z-index: 3;
}

#side_text p {
    transform: rotate(90deg);
    font-family: AudioNugget;
    font-size: 75px;
    letter-spacing: 40px;
    white-space: nowrap;
    color: black;
}

@keyframes cd {
    from {rotate: 0deg;}
    to {rotate: 360deg;}
  }

#cd {
    position: absolute;
    bottom: 20px;
    left: 20px;
    width: 100px;
    animation-name: cd;
    animation-duration: 4s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    z-index: 2;
}