html,
body {
    background-color: #1c2023;
    margin: 0;
    font-family: 'Courier New', Courier, monospace;
    color: #f3f4f5;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    width: 100%;
    height: 100vh;
}

button,
button:focus {
    cursor: pointer;
    border: none;
    outline: none;
    display: inline-block;
    color: #606f80;
    background-color: #1c2023;
    font-family: 'Courier New', Courier, monospace;
    font-size: 21px;
    text-align: center;
    text-decoration: none;
    margin: 13px;
}

h1 {
    font-size: 48px;
}

.links a {
    display: inline;
    color: #f3f4f5;
    font-size: 20px;
}
.content-wrapper {
    position: absolute;
    z-index: 1;
}

.controls {
    position: absolute;
    z-index: 1;
}

.animation-wrapper {
    width: 100%;
    height: 100%;
    white-space: nowrap;
    overflow: hidden;
    position: static;
}

.stagger-visualizer {
    transform-origin: left top;
}

.stagger-visualizer .dots-wrapper {
    transform: translateZ(0);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.stagger-visualizer .dot {
    cursor: pointer;
    position: relative;
    z-index: 1;
    width: 21px;
    height: 21px;
    margin: 13px;
    background-color: #1f2427;
}
