body {
    background-color: black;
    color: white;
    font-size: 20px;
    font-family:'Times New Roman', Times, serif
}

@font-face {
    font-family: summer-pixel;
    src: url(summer-pixel-22-font/SummerPixel22Regular-jE0W7.ttf)
}
h1 {
    color: white;
    font-family: summer-pixel;
    font-size: 200px;
    padding: 0 0 0 0;
    margin: 0 0 0 0;
    text-align: center;


    position: absolute;
    left: 20px;
    right: 20px;
    top: 120px;
}

/*
 #scene {
    background: url('arena_win.jpg') no-repeat;
    height: 375px;
    width: 750px;
    margin: auto;

    position: relative;
    top: 20px;
    left: 20px;
 }
*/
 #situation {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 15px 15px 15px 15px;
    margin: auto;

    background-color: rgba(0,0,0,.5);
    width: 640px;
    text-align: center;
 }
a {
    color: white;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

p {
    text-align: center;
}
.element {
    width: 100%;
    height: 100%;
    animation: pulse 7s infinite;
  }
  
  @keyframes pulse {
    0% {
      background-color: #001F3F;
    }
    100% {
      background-color: #FF4136;
    }
  }
  
  html,
  body {
    height: 100%;
  }