* {
    margin: 0;
    background-color: black;
    color: #F4F4F4;
    font-family: 'CaveStoryRegular';
}

html,
body {
    height: 100%;
}

#container {
    display: flex;
    height: 100%;
    align-items: center;
    justify-content: center;
}

#v {
    text-align: center;
    font-size: 30vw;
}

@keyframes vanim {
    from {
        transform: rotate(4deg);
    }
    to {
        transform: rotate(-4deg);
    }
}

#things {
    display: inline;
    position: absolute;
    background-color: transparent;
}

.thing {
    position: absolute;
    opacity: 0;
    color: #F3F3F3;
    background-color: transparent;
    font-size: 2rem;
}

.slidercontainer {
    position: fixed;
    bottom: 0;
    padding: 8px;
}

.slider {
    -webkit-appearance: none;
    appearance: none;
    height: 8px;
    border-radius: 4px;
    background: #5e5e5e;
    outline: none;
    opacity: 0.15;
    -webkit-transition: .2s;
    transition: opacity .2s;
}

.slider:hover {
    opacity: 1;
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 16px;
    height: 16px;
    border: none;
    border-radius: 8px;
    background: #4d4d4d;
    cursor: pointer;
}

.slider::-moz-range-thumb {
    width: 16px;
    height: 16px;
    border: none;
    border-radius: 8px;
    background: #4d4d4d;
    cursor: pointer;
}