*, *::before, *::after {
    box-sizing: border-box;
}

body {
    background-color: #ffb269;
    margin: 0;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.piano {
    display: flex;
}

.key {
    height: calc(var(--width) * 4);
    width: var(--width);
}

.white {
    --width: 100px;
    background-color: white;
    border: 1px solid #333;
    border-radius: 10px;
}

.white.active {
    background-color: #CCC;
}

.black {
    --width: 60px;
    background-color: rgb(39, 39, 39);
    margin-left: calc(var(--width) / -2);
    margin-right: calc(var(--width) / -2);
    z-index: 2;
    border-radius: 10px;
}
  
.black.active {
    background-color: #333;
}