@import "compass/css3";
* {
    margin: 0;
    padding: 0;
    height: 100vh;
    height: -webkit-fill-available;
    height: 100%;
    font-family: 'Space Mono', monospace;
}

body {
    background-color: black;
    min-height: 100vh;
    min-height: -webkit-fill-available;
    overflow: hidden;
}

.sequencer {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    max-width: 800px;
    max-height: 800px;
    display: grid;
    grid-template-columns: repeat(8, auto);
}

.note {
    border-style: solid;
    border-width: 0.5px;
    border-color: black;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 3px;
    line-height: 200%;
    border-radius: 3px;
    background-color: rgb(240, 240, 240);
    color: black;
    transition: ease-in-out 180ms;
}

.note-is-active {
    background-size: 500%;
    background-position: center;
    font-weight: bold;
    border-radius: 52px;
    background-color: white;
    color: black;
}

.playing {
    background-color: rgb(181, 252, 39);
    border-radius: 3px 3px 52px 52px;
    font-size: 24px;
    background-size: 100%;
}

.credits {
    color: rgb(120, 120, 130);
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 2px;
    position: fixed;
    width: 90%;
    height: auto;
    text-align: center;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
}

#top {
    top: 20px;
}

#bottom {
    bottom: 20px;
}

@media only screen and (max-width: 800px) {
    .sequencer {
        width: 100%;
        height: 75%;
    }
    .note {
        font-size: 10px;
        letter-spacing: 1px;
    }
    .playing {
        font-size: 20px;
    }
    .credits {
        font-size: 10px;
    }
}
/* Add this style at the end of your CSS file */
.refresh-button {
    position: fixed;
    top: 10px;
    right: 10px;
    width: 30px; /* Set the desired width */
    height: 30px; /* Set the desired height */
    font-size: 16px;
    line-height: 1;
    background-color: #333;
    color: #fff;
    border: none;
    padding: 5px;
    cursor: pointer;
    border-radius: 5px;
}

/* Remove other styles related to the refresh button */
