@font-face {
  font-family: skip std b;
  font-size: 20px;
  src: url(https://files.catbox.moe/k6zsl8.woff2);
}

body {
    min-height: 100vh;
    margin: 0;
    background-image: linear-gradient(to bottom, rgba(15, 140, 184), rgba(20, 36, 113));
}

.logo-wrapper {
    position: relative;
    display: inline-block;
}

#status {
    color: #FFFF00;
    font-size: 2em;
    font-family:'minecraftfont';
    text-shadow:3px 3px #3F3F00;
    padding: 40px;
    position: static;
}
.pop {
    animation: pop 0.58s infinite;
    -webkit-animation: pop 0.58s infinite;
}
@keyframes pop {
    from {
        transform:scale(0.95)
    }
    50% {
        transform:scale(1)
    }
    to {
        transform:scale(0.95)
    }
}
@-webkit-keyframes pop {
    from {
        -webkit-transform:scale(0.95)
    }
    50% {
        -webkit-transform:scale(1)
    }
    to {
        -webkit-transform:scale(0.95)
    }
}
.tilt {
    position: absolute;
    bottom: 5%;
    right: -10%;               
    transform: rotate(-25deg);
    -webkit-transform: rotate(-25deg);
    -ms-transform: rotate(-25deg);
    transform-origin: center center;
    white-space: nowrap;
    pointer-events: none;
}
@font-face {
    font-family:'minecraftfont';
    src: url('http://design.d3x.co/demo/mcgeneric/font/minecraft_font.woff');
}