body {
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url("images/background.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.container {
    text-align: center;
    margin: 50px auto;
    background-color: #505050;
    padding: 20px;
    border-radius: 15px;
}

.drum {
    display: inline-block;
    border: 3px solid;
    width: 25px;
    height: 25px;
    text-align: center;
    padding: 7px 3px 3px 3px;
    margin: 5px;
    font-style: oblique;
    border-color: #f90;
    transition: all 0.07s;
    background-color: #fff;
}

.playing {
    transform: scale(1.4);
    border-color: #ffdf80;
    box-shadow: 0 0 5px #ffdf80;
}

