/*Colors*/
:root{
    --black: #000;
    --grey:#9E9E9E;
}

/*Fonts*/
@font-face {
    font-family: "crown_horror";
    src: url(/fonts/crown_horror/CROWN\ HORROR.ttf);
}

/*Background*/
body{
    background-image: url(/images/scary-gif4.gif);
    background-color: var(--grey);
    background-size: 110%;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
    position: fixed;
    color: red;
    width: 100%;
}

header{
    font-family: "crown_horror";
    font-size:xx-large;
    background-color: rgba(255, 0, 0, 0);
    position: fixed;
    width: 100%;
    display: flex;
    justify-content: space-evenly;
    position: relative;
    top:200px;
    z-index: 1;
}

/* links */
a{
    text-decoration: none;
    color: red;
}

a:hover{
    color: darkred;
}
a:active{
    /*Indsæt video animation her som hidden, så kun lyden går igennem*/
}

/*billeder*/

/*animations*/
@keyframes {
    from { opacity: 0%;}
    to {opacity: 20%;}
}
@keyframes  {
    0%   {opacity: 0%;transform: scale(0.1);} /* du kan selv sætte flere eller fætte "trin" på her */
    25%  {opacity: 10%;}
    50%  {opacity: 5%;}
    100% {opacity: 0%;}
  }

#audControls{
    visibility: hidden;
}

/* videos and GIFs*/
.gif1{
    position: absolute;
    top: 300px;
    left: 100px;
    background-color: rgba(255, 0, 0, 0.734);
    opacity: 20%;
    width: 300px;
    height: auto;
}
.gif2{
    position: absolute;
    top: 300px;
    left: 800px;
    background-color: rgba(255, 0, 0, 0.734);
    opacity: 20%;
}


/*@media rules*/
@media {
    
}