html, body {
    height: 100vh;
    margin: 0;
    background-color: #1b1918;
    background: radial-gradient(circle at center -50%, #622f0d 0%, #622f0d 20%, #1b1918 100%);
    color: #b98b79;
    font-weight: 100;
    font-family: "Nunito", sans-serif;
}
.wrap {
    top: 50%;
    left: 50%;
    width: 310px;
    height: 260px;
    margin-left: -155px;
    margin-top: -110px;
    position: absolute;
    text-align: center;
}
.kaybi {
    animation: float 3s ease-out infinite;
    filter: drop-shadow(0 0 10vh rgb(155, 150, 145));
}
.shadowFrame {
    width: 130px;
    margin: 10px auto 0 auto;
}
.shadow {
    animation: shrink 3s ease-out infinite;
    transform-origin: center center;
    filter: drop-shadow(0 0 10px #1b1918);
}
.flex-center {
    align-items: center;
    display: flex;
    justify-content: center;
    color: #f06329;
    filter: drop-shadow(0 0 0.2vh rgb(2, 2, 2));
}
.code {
    border-right: 2px solid;
    font-size: 24px;
    padding: 0 10px 0 15px;
    text-align: center;
}
.message {
    font-size: 18px;
    text-align: center;
    padding: 10px;
}
.description {
    font-size: 0.8em;
}

@keyframes float {
    50% {
        transform: translate(0, 20px);
    }
}

@keyframes shrink {
    0% {
        width: 90%;
        margin: 0 5%;
    }
    50% {
        width: 60%;
        margin: 0 18%;
    }
    100% {
        width: 90%;
        margin: 0 5%;
    }
}
