body {
    background-color: #000;
    margin: 0;
    padding: 0;
}

h1 {
    font-family: monospace;
    color: #FF268E;
    font-style: italic;
    width: 100%;
    text-align: center;
    text-transform: uppercase;
    text-shadow: 7px 6px 4px blue, 0 0 10em blue, 0 0 3.2em #62008b;
    background-color: #000;
    position: sticky;
    top: 0;
}

.wrap {
    max-width: 800px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: auto;
}

.inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    column-gap: 20px;
    row-gap: 40px;
    margin-bottom: 1rem;
}

button {
    background-color: darkblue;
    cursor: pointer;
    color: #fff;
    border: 0;
    font-size: 20px;
    width: 200px;
    font-weight: bold;
    height: 40px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.stop {
    max-width: 100px;
}

.overlay {
    z-index: 200;
    width: 100vw;
    height: 100vh;
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #000;
}
