* {
    margin: 0;
    padding: 0;
    font-size: 12px;
    font-family: sans-serif;
}

body {
    background-image: url(background.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    min-height: 100vh;
}

.keys {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

.key {
    border: 4px solid black;
    text-align: center;
    padding: 1rem 0.5rem;
    width: 100px;
    color: white;
    font-size: 1.5rem;
    background-color: rgba(0, 0, 0, 0.4);
    text-shadow: 0 0 5px black;
    border-radius: 0.5rem;
    margin: 1rem;
    flex: 1;
    transition: all 0.07s;
}

.playing {
    transform: scale(1.1);
    border-color: #ffc600;
    box-shadow: 0 0 1rem #ffc600;
}

kbd {
    display: block;
    font-size: 4rem;
}

.sound {
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    color: #ffc600;
}