@import url('https://fonts.googleapis.com/css2?family=Bitcount+Single:wght@100..900&family=Orbitron:wght@400..900&display=swap');

body {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    -webkit-user-select: none;
    user-select: none;
}

.keyboard-body {
    display: flex;
    justify-content: center;
    align-items: end;
    width: 380px;
    height: 200px;
    border: rgb(95, 95, 95) 3px solid;
    border-radius: 10px;
    position: relative;
    z-index: 0;
    background-color: rgb(61, 61, 61);
}

.display {
    position: absolute;
    width: 210px;
    height: 70px;
    border:  rgb(47, 47, 47) 2px solid;
    border-radius: 3px;
    padding-top: 5px;
    padding-bottom: 5px;
    top:5px;
    z-index: 2;
    background-color: rgb(90, 157, 90);
}
.display-off {
    position: absolute;
    width: 210px;
    height: 70px;
    border:  rgb(47, 47, 47) 2px solid;
    border-radius: 3px;
    padding-top: 5px;
    padding-bottom: 5px;
    top:5px;
    z-index: 2;
    background-color: rgb(62, 78, 62);
}
.display-row {
    margin: 0px;
    margin-left: 5px;
    font-family: "Bitcount Single";
    font-size: 0.9rem;
    color: rgba(17, 28, 17);
}
.logo{
    top: 5px;
    margin: 0px;
    font-family: "Bitcount Single";
    text-align: center;
    font-size: 4rem;
    color: rgb(17, 28, 17);
}

.key-area {
    display: flex;
    position: relative;
}

.white-key {
    background-color: whitesmoke;
    height: 100px;
    width: 30px;
    z-index: 1;
}
.black-key {
    background-color: black;
    height: 60px;
    width: 20px;
    position: absolute;
    z-index: 2;
}
.white-key:hover {
    background-color: rgb(219, 217, 217);
}
.black-key:hover {
    background-color: rgb(46, 46, 46);
}

.white-key p {
    color: gray;
    font-weight: 500;
    display: flex;
    justify-content: center;
    text-transform: uppercase;
    position: absolute;
    bottom: 2px;
}
.black-key p{
    color: rgb(95, 95, 95);
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    position: relative;
    bottom: 1px;
}


#cSharp {
    left: 21px;
}

#dSharp {
    left: 51px;
}

#fSharp {
    left: 111px;
}

#gSharp {
    left: 141px;
}

#aSharp {
    left: 171px;
}

button {
    touch-action: manipulation;
    -webkit-touch-callout: none;
}


@media (max-width: 600px) {
    .black-key p {
        color: transparent;
    }
    .white-key p {
        color: transparent;
    }
}