body {
    background-color: black;
    background-image: url("f13Assets/jasonbg.png");
    background-repeat: repeat;
    color: white;
    font-family:'Niramit', sans-serif;
    text-align: center;
    font-size: 16px;
    line-height: 1.1em;
    margin: 0 auto;
}

.container {
    top: 5%;
    bottom: 5%;
    position: absolute;
    margin: auto;
    left: 0;
    right: 0;
    width: 600px;
    height: 600px;
}

.content {
    width: 600px;
    height: 600px;
    padding: 20px;
    background: black;
    overflow: auto;
    border: #ff1f1f 2px solid;
    border-bottom: transparent;
    z-index: 3;
}

.blood img {
    margin-top: -2px;
    width: 644px;
}

a {
    text-decoration: none;
    color: #ff1f1f;
}

a:hover {
    color: white;
    transition: all .4s ease;
    -webkit-transition: all .4s ease;
}

/* scrollbar */
::-webkit-scrollbar {
width: 5px;
}

::-webkit-scrollbar-track {
background: #000000; 
}

::-webkit-scrollbar-thumb {
background: red;
}

::-webkit-scrollbar-thumb:hover {
background: white; 
}

.content img:hover {
    /* Start the shake animation and make the animation last for 0.5 seconds */
    animation: shake 0.5s;
  
    /* When the animation is finished, start again */
    animation-iteration-count: infinite;
  }
  
  @keyframes shake {
    0% { transform: translate(1px, 1px) rotate(0deg); }
    10% { transform: translate(-1px, -2px) rotate(-1deg); }
    20% { transform: translate(-3px, 0px) rotate(1deg); }
    30% { transform: translate(3px, 2px) rotate(0deg); }
    40% { transform: translate(1px, -1px) rotate(1deg); }
    50% { transform: translate(-1px, 2px) rotate(-1deg); }
    60% { transform: translate(-3px, 1px) rotate(0deg); }
    70% { transform: translate(3px, 1px) rotate(-1deg); }
    80% { transform: translate(-1px, -1px) rotate(1deg); }
    90% { transform: translate(1px, 2px) rotate(0deg); }
    100% { transform: translate(1px, -2px) rotate(-1deg); }
  }