*{
    padding: 0;
    margin: 0;
}

body{
    background-color: slategrey;
    font-family: Arial, sans-serif;
    text-align: center;
    background-image: url("image/codder.png");
    background-size: cover;
    
}

.container{
    height: 70vh;
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    gap: 20px;

}

.drum {
    width: 100px;
    height: 100px;
    color: white;
    background-color: rgba(0, 0, 0, 0.5);
    transition: background-color 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    transition: all 0.1s;
}

.keypress {
    background-color: yellow;
    border: 3px solid white;
    color: black;
    span {
        color: red;
    }
    transform: scale(1.1);
}

kbd {
    margin-top: auto;
    height: 60px;
    width: 60px;
    font-size: 40px;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

span{
    color: yellow;
    font-size: 25px;
}

h1 {
    color: white;
    font-size: 40px;
}
