body {
    overflow: hidden;
}

.bg {
    position: absolute;
    
    left: 0px;
    top: 0px;
    
    height: 4000px;
    width: 4000px;
    
    background: url(../images/soon_bg.png) center repeat;
    animation: slide 60s linear infinite;
}

.content {
    position: absolute;
    
    left: 0px;
    top: 0px;
    
    width: 100%;
    height: 100%;
}

@keyframes slide{
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-400px, -400px, 0);
  }
}

#info {
    background-color: rgba(255, 255, 255, 0.5);
    
    width: fit-content;
    height: fit-content;
    
    padding: 15px;
    
    position: absolute;
    left: 15px;
    top: 15px;
}

#critter {
    position: absolute;
    float: right;
    
    right: 40px;
    bottom: 0%;
}

#tunes {
    text-align: center;
    
    max-width: fit-content;
    
    
    max-height: fit-content;
    
    margin: 0;
    position: absolute;
    
    left: 50%;
    top: 50%;
    
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

img {
    max-width: 50%;
    max-height: 50%;
}