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

html {
    font-size: 62.5%;
    height:  100%;
}

body {
    background: lightgrey;
    font-size: 1.5rem;
    height: 100%;
    position: relative;
    
}

.key-wrapper {
    width: 100%;
    max-width: 80rem;
    margin-inline: auto;
    min-height: 10rem;
    background-color: aquamarine;
    display: flex;
    justify-content: space-evenly;
    align-items: left;
    gap: 1rem;
    padding: 0.5rem;
    flex-wrap: wrap;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.keys {
    flex: 1;
    padding-top: 2rem;
    flex-basis: 10rem;
    height: 8rem;
    text-align: center;
    background-color: blueviolet;
    border: 0.2rem solid black;
    border-radius: 0.5rem;
    transition: all 0.04s ease;
}

.playing {
    transform: scale(1.2);
}

.the-sound {
    display: none;
}

.beat-wrapper {
    background-color: aquamarine;
    width: 100%;
    max-width: 80rem;
    margin-inline: auto;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    margin-top: 5rem;
    margin-bottom: 5rem;
    padding: 2rem;
}

.beat-wrapper h2 {
    font-size: 2rem;
}

.beat {
    width:  100%;
    background-color: bisque;
    min-height: 10rem;
    margin-block: 2rem;
}

.beat-button {
    width: 20rem;
    height: 6rem;
    padding: 0.5rem;
}

/* @media (width <= 700px) {

} 