@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #111111;
    height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#piano {
    display: flex;
}

.keys {
    display: flex;
    text-transform: capitalize;
    align-items: flex-end;
    padding-bottom: 30px;
    justify-content: center;
    font-family: 'JetBrains Mono', monospace;
    font-weight: 600;
    cursor: pointer;
    transition: 100ms;
    user-select: none;
}   

.white {
    font-size: larger;
    width: 80px;
    height: 200px;
    background: #eeeeee;
    color: #111;
    border: #111111 2px solid;
}

.white:hover {
    background-color: #ccc;
}

/* .white:active {
    height: 195px;
} */

.black {
    z-index: 2;
    font-size: medium;
    width: 50px;
    height: 120px;
    background-color: #111111;
    color: #eeeeee;
    position: absolute;
}

.black:hover {
    background-color: #222222;
}

#touches {
    color: #eeeeee;
    font-family: 'JetBrains Mono', monospace;
    font-size: large;
    margin-bottom: 20px;
}

/* .black:active {
    height: 115px;
} */