body {
    background-color: darkolivegreen;
    display: flex;
    flex-flow: column nowrap;
    color: white;
    justify-content: center;
    align-items: center;
}

.set {
    display: flex;
    flex-flow: row nowrap;
    gap: 10px;
    justify-content: center;
    align-items: center;
}

.pressed {
    box-shadow: 0 3px 4px 0 #DBEDF3;
    opacity: 0.5;
}

.drum {
    color: brown;
    background-color: white;
    height: 100px;
    width: 100px;
    border: rgb(102, 134, 47) 10px solid;
    font-size: 3rem;
    font-weight: 900;
    border-style: outset;
}

h1 {
    font-size: 4rem;
}

.w {
    background-image: url(./images/tom1.png);
}
.a {
    background-image: url(./images/tom2.png);
}
.s {
    background-image: url(./images/tom3.png);
}
.d {
    background-image: url(./images/tom4.png);
}
.j {
    background-image: url(./images/snare.png);
}
.k {
    background-image: url(./images/crash.png);
}
.l {
    background-image: url(./images/kick.png);
}