body {
    background-color: #000;
}

.word-canvas {
    height: 500px;
    width: 100vw;
    color: hotpink;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: auto;
}

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

.word-wrapper {
    position: absolute;
    top: 0px;
    left: 0px;

    width: 50px;
    height: 50px;

    font-family: Monospace;
    font-size: 5rem;
    font-weight: 600;
    text-align: center;
}

.input-holder {
    width: 100vw;
    display: flex;
    justify-content: center;
    position: absolute;
    bottom: 0;
}

input, button {
    margin-top: auto;
    font-size: 1.5rem;
    margin: 5px;
}

#json-buttons {
    margin-top: 15px;
    display: flex;
    justify-content: center;
    gap: 10px;
}


@keyframes floating {
    0% {
        transform: translate(0, 0px);
    }

    50% {
        transform: translate(0, 15px);
    }

    100% {
        transform: translate(0, -0px);
    }
}

@keyframes changeColor {
    0% {
        color: hotpink;
    }

    50% {
        color: limegreen;
    }

    100% {
        color: hotpink;
    }
}


.changeColor {
    animation-name: changeColor;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
    transition: all .5s;
}