body {
    max-height: 100vh;
    background-color: #000000;
    background-image:url(assets/218-2186783_mj-michael-jackson-red-background.jpg)
}
h1 {
    color: rgb(255, 5, 5);
    background: linear-gradient(to bottom, rgb(251, 0, 0), rgb(253, 0, 156), rgb(1, 245, 253));
}
#piano {
    margin: auto;
    margin-top: 30vh;
    width: 70%;
    max-width: 800px;
    height: 300px;
    background: linear-gradient(to bottom, rgb(255, 0, 0), rgb(248, 1, 186), rgb(0, 234, 255));
    box-shadow: 0 8px 32px 0 rgba( 31, 38, 135, 0.37);
    backdrop-filter: blur( 4px);
    -webkit-backdrop-filter: blur( 4px);
    border-radius: 10px;
    border: 1px solid rgba( 255, 255, 255, 0.18);
    position: relative;
}

#keys {
    width: 90%;
    position: absolute;
    bottom: 5px;
    height: 60%;
    margin: 5%;
}

.whiteKeys {
    width: 7%;
    height: 100%;
    background-color: rgb(224, 205, 220);
    position: absolute;
    border: 2px solid black;
    cursor: pointer;
}

.whiteKeys:active {
    background: linear-gradient(to bottom, rgb(223, 86, 228), rgb(238, 238, 238), grey);
    box-shadow: 2px -2px black inset, -4px -2px black inset;
}

.whiteKeys:hover {
    background-color: rgb(125, 219, 231);
}

.blackKeys {
    width: 3.5%;
    height: 50%;
    background-color: rgb(71, 71, 71);
    position: absolute;
    cursor: pointer;
}

.blackKeys:hover {
    background-color: rgb(36, 36, 36);
}

.blackKeys:active {
    background-color: black;
}

#volumeBar {
    position: absolute;
    right: 50px;
    top: 50px;
}

.fa-volume-up {
    color: yellow;
    font-size: 36px;
}

.fa-plus {
    color: green;
    cursor: pointer;
}

.fa-minus {
    color: red;
    cursor: pointer;
}

#volume {
    font-weight: 800;
    font-size: 1.5rem;
    user-select: none;
    color: white;
}