html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
}




body{
background-image: url('/backgrounds/in-progress.jpg');
background-position: center;
background-repeat: no-repeat;
background-size: cover;
}



.overlay-image {
  position: absolute;
  top: 60%;
  left: 30%;
  transform: translate(-50%, -50%);
  width: 250px;
  height: auto;
}




.content {
  position: relative;
  z-index: 1;
  padding: 2rem;
    }




@font-face {
  font-family: 'Kai';
  src: url('/interface/ka1.ttf');
}
h1 {
  padding-top: 75px;
  color: white;
  text-align: center;
  font-family: 'Kai';
  font-size: 50px;
}




.float {
animation-name: floating;
animation-duration: 3s;
animation-iteration-count: infinite;
animation-timing-function: ease-in-out;
}

@keyframes floating {
0% { transform: translate(0, 0px); }
50% { transform: translate(0, 15px); }
100% { transform: translate(0, -0px); }
}




.glowtext {
-webkit-background-clip: text;
-webkit-animation: glow 2.0s linear infinite;
animation: glow 2.0s linear infinite;
}

@keyframes glow {
0% { text-shadow: 0 0 15px blueviolet; }
50% { text-shadow: none; }
100% { text-shadow: 0 0 15px blueviolet; }
}

@-webkit-keyframes glow {
0% { text-shadow: 0 0 15px blueviolet; }
50% { text-shadow: none; }
100% { text-shadow: 0 0 15px blueviolet; }
}