@font-face {
    font-family: Retro;
    src: url(../fonts/retro_computer.ttf);
}

@font-face {
    font-family: Typewrite;
    src: url(../fonts/typewriter.ttf);
}


* {
    image-rendering: pixelated;
    scrollbar-width: none;
}

body {
    background-image: url(../images/movie-blog/scream-7-bg.png);
    background-size: 100%;
    aspect-ratio: 16 / 9;
    background-attachment: fixed;
}

p {
    font-family: Typewrite !important;
}

.foreground {
    background-image: url(../images/blood.gif);
    background-repeat: repeat-x;
    position: fixed;
    top: 0;
    left: 0;
    margin: 0;
    width: 100%;
    height: 500px;
    pointer-events: none;
    z-index: 5;
}

#knife-l {
    position: absolute;
    width: 400px;
    bottom: -50px;
    left: -20px;
    animation-name: rotation-l;
    animation-duration: 3s;
    animation-direction: alternate;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
    z-index: -1;
    transform-origin: 0% 100%;
}

@keyframes rotation-l {
  from {transform: rotate(0deg);}
  to {transform: rotate(15deg);}
}

#knife-r {
    position: absolute;
    width: 400px;
    bottom: -50px;
    right: -420px;
    animation-name: rotation-r;
    animation-duration: 3s;
    animation-direction: alternate;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
    z-index: -1;
    transform-origin: 0% 100%;
}

@keyframes rotation-r {
  from {transform: rotate(0deg) scaleX(-1);}
  to {transform: rotate(-15deg) scaleX(-1);}
}

.back {
    margin-top: 20px;
    position: fixed;
    font-family: Typewrite;
    color: white;
    text-decoration: none;
    font-size: 25px;
}

.spoiler-switch {
    display: none;
}

.content {
    margin-left: auto;
    margin-right: auto;
    max-width: 700px;
    margin-bottom: 300px;
}

.spoiler {
    filter: blur(3px);
}

#logo {
    width: 400px;
    margin-bottom: 40px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

p {
    text-align: center;
    font-family: monospace;
    color: white;
    font-size: 20px;
    text-shadow: 0 0 4px black;
}

a {
    color: white;
    text-decoration: none;
}