* {
    margin: 0;
    box-sizing: border-box;
}



.wrapper {
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #e0e0e0;
}

.title {
    position: absolute;
    top: 25px;
    margin: auto;
}

#drum-machine {
    padding: 40px;
    box-shadow: 8px 8px 17px #a6a6a6,
    -8px -8px 17px #ffffff;
    border-radius: 27px;
    background: #e0e0e0;
    text-align: center;
}

#display {
    font-size: 30px;
    padding: 10px 20px;
    display: inline-block;
    background-color: #e0e0e0;
    border: 5px solid #e0e0e0;
    min-width: 300px;
    margin-bottom: 10px;
    border-radius: 5px;
}

.drum-pads {
    display: grid;
    grid-template-columns: repeat(9, 1fr);
    gap: 5px;
}

.drum-pad {
    background: #e0e0e0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80px;
    width: 80px;
    border: 2px solid #dfb57f;
    cursor: pointer;
}

.drum-pad.drum-pad-active {
    background: #e0e0e0;
    box-shadow: 5px 5px 10px #d39647;
    transform: scale(0.9);
}

.drum-text {
    font-size: 20px;
}

@media only screen and (max-width: 900px) {
    .drum-pads {
        grid-template-columns: repeat(3, 1fr);
    }

    #display {
        min-width: 100%;
    }
}

@media only screen and (max-width: 400px) {
    #display {
        font-size: 25px;
    }

    .drum-pad {
        height: 60px;
        width: 60px;
    }
}

html {
    font-family:monospace;
    text-align:center;
    color:gray;
    background: #e0e0e0;
}
