*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    
    font-family: sans-serif;
}

body{
    background-image: url("./drums-image.jpg");
    width: 100%;
    height: 100%;
}
.title{
    display: flex;
    height: 50vh;
    background-image: none;
    justify-content: center;
}
.title h1{
    font-size: 70px;
    color: rgba(179, 179, 179, 0.719);
}
.drums-buts{
    display: flex;
    justify-content: center;
    gap: 1rem;
}
.key{
    display: flex;
    flex-direction: column;
    align-items: center;
    border: solid 4px rgba(255, 0, 0, 0.219);
    border-radius: 15px;
    margin: 1rem;
    padding: 1rem;
    font-size: 1.5rem;
    transition: all 0.4s;
    width: 95px;
    color: white;
    text-shadow: 0 0 5px red;
}
kbd{
    display: block;
    font-size: 30px;
}
.sound{
    padding-top: 10px;
    font-size: .8rem;
    color: grey;
    text-shadow:none;
}
.play-drums{
    transform: scale(1);
    border-color: yellow;
    box-shadow: 0 0 10px yellow;
}
/*.sec-drums{
    display: flex;
    justify-content: center;
    background-image: none;
    margin: 10px;
}
.ul-drums{
    display: flex;
    justify-content: center;
    gap: 6rem;
    background-image: none;
}
.but{
    font-size: 25px;
    border: solid 2px white;
    color: white;
    padding: 5px 20px;
}*/