* {
    font-family: 'Quicksand', sans-serif;
}

h1 {
    margin: 30px 0 10px 0;
}

body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color:rgb(226, 160, 215)
}

* {
    animation: transform 0.4s;
    animation-iteration-count: 1;
    animation-play-state: running;
}
@keyframes transform {
    from {
        transform: translateX(700px)
    }
    to {
        transform: translateX(0px)
    }
}

.fly-away {
    animation: flyaway 0.4s;
    animation-iteration-count: 1;
    animation-play-state: inherit;
}
@keyframes flyaway {
    from {
        transform: translateX(0px)
    }
    to {
        transform: translateX(1000px)
    }
}

#play-pause {
    width: 100px
}

.grid {
    max-width: 95%;
    overflow-x: scroll;
    display: flex;
    flex-wrap: nowrap;
    background: linear-gradient(to right, rgb(226, 160, 215),#A14A76);
    box-shadow: 10px 3px 10px #A14A76;
}

#drum-grid {
    margin-top: 35px;
}

.column.light {
    margin-left: 2px;
    background-color: #FBC2B5
}

.column.dark {
    margin-left: 2px;
    background-color: #FFA8A9
}

.column.animate {
    background-color: rgba(255, 255, 255, 0.623);
}

.cell {
    height: 16px;
    width: 33px;
    border: 0.5px solid black

}

.cell:hover {
    background-color: rgba(161, 74, 117, 0.644);
}

.cell.on {
    background-color: #A14A76;
}

button {
    font-size: 17px;
    padding: 10px 15px;
    margin: 20px;
    border: 1px solid black;
    background-color: white;
    border-radius: 5px;
    box-shadow: 5px 5px 5px #A14A76;
    outline: none;
}

button:hover {
    background-color: rgba(253, 158, 188, 0.932);
    transition: 0.2s;
    outline: none;
}

button:active {
    transform: scale(0.95, 0.95) translateY(2px);
    transition: 0s;
}

#playback-controls {
    margin: 20px;
    display: flex;
    align-items: center;
}

#plus-minus-group {
    border: 1px solid black;
    display: flex;
    padding: 0;
    margin: 20px;
    border-radius: 5px;
    box-shadow: 5px 5px 5px #A14A76;
    background-color: rgba(253, 158, 188, 0.932);
}

.plus {
    border-radius: 5px 0 0 5px
}

.minus {
    border-radius: 0 5px 5px 0
}

.plus, .minus {
    box-shadow: none;
    border: none;
    margin: 0;
}

.plus:active, .minus:active {
    background-color: rgba(253, 158, 188, 0.932);
    transform: scale(0.7, 0.7);
}

input {
    padding: 10px 15px;
    height: 50%;
    outline: none;
}

/* scheme...
#FBC2B5
#FFA8A9
#F786AA
#A14A76
#CDB2AB
*/