*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    background-color: #143f6b;
    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;
    height: 400px;
    background-color: #ffffff;
    border: 1px solid #333333;
}

.white.active {
    background-color: #cccccc;
}

.black {
    --width: 60px;
    height: 240px;
    background-color: #000000;
    margin-left: calc(var(--width) / -2);
    margin-right: calc(var(--width) / -2);
    z-index: 2;
}

.black.active {
    background-color: #333333;
}