:root {
    font-family: 'Azeret Mono', monospace;
    --border: .85vw;
    --purple: #eb69ff;
    --grey: #111111;
    --priColor: rgb(0, 0, 0);
    --secColor: rgb(255, 255, 255);
    --invert: 0%;
    counter-reset: pages;
}
* {
    box-sizing: border-box;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
     -khtml-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
}
html {
    scrollbar-width: thin;
}
body {
    background-color: var(--priColor);
    color: var(--secColor);
    margin: 0px;
    overflow-x: hidden;
    box-sizing: border-box;
}
body::-webkit-scrollbar {
    width: .4vw;
}
body::-webkit-scrollbar-thumb {
    background-color: #7775;
    border-radius: 5px;
}
body::-webkit-scrollbar-thumb:hover {
    background-color: #777;
}
header {
    font-size: 1.2rem;
    width: 100vw;
    height: 10vh;
    position: absolute;
}
footer {
    position: fixed;
    font-size: small;
    bottom: .0rem;
    right: 1rem;
}

.center {
    display: flex;
    justify-content: center;
    align-items: center;
}
.hidden {
    opacity: 0;
    transform: translateX(-100px);
    transition: all 1s ease;
    transition-property: opacity, transform;
}
.show {
    opacity: 1;
    transform: translateX(0px);
}
.noDisplay {
    display: none;
}

.wrapper {
    height: 100vh;
    perspective: 0px;
}
.background {
    width: 100vw;
    height: 300vh;
    position: absolute;
    overflow: hidden;
}
.chord {
    position: absolute;
    width: 100%;
    height: 100%;
}
.chord-label {
    position: absolute;
    top: 15vh;
}
.chord-label1 {
    left: 14vw;
}
.chord-label2 {
    left: 38vw;
}
.chord-label3 {
    left: 64vw;
}
.chord-label4 {
    left: 83vw;
}
.chord-svg {
    /* filter: invert(var(--invert)); */
    object-fit: cover;
    height: 100%;
    width: 100%;
}
.scribble {
    height: 100vh;
    width: 100vw;
    top: 90vh;
    position: absolute;
    opacity: 0;
    /* z-index: -1; */
}

.whiteOut {
    /* background-color: red; */
    height: 30px;
    width: 30px;
    position: absolute;
    top: 140vh;
}
.pageone {
    width: 100vw;
    height: 100vh;
}
.face {
    color: var(--secColor);
    text-decoration: none;
}
.logo {
    animation: logo 1s ease;
}
.flex-column {
    flex-direction: column;
    width: 100vw;
    height: 100vh;
    position: absolute;
    gap: 2vw;
}
.flex-row {
    gap: 3vw;
}
.flex-row1 {
    width: 80vw;
}
.flex-row2{
    width: 80vw;
}
.flex-row3 {
    width: 80vw;
    gap: 1vw;
}
.counter-div {
    height: 2.5rem;
    width: 10rem;
    justify-content: flex-end;
    line-height: 2.5rem;
    text-align: center;
}
.sheet-div {
    background-color: var(--secColor);
    width: 36rem;
    height: 2.5rem;
    /* justify-content: flex-start; */
    color: var(--priColor);
    font-size: 1.3rem;
    padding-left: 1.2rem;
    padding-right: 1.2rem;
    border-radius: 5px;
    white-space: nowrap;
    overflow: hidden;
    position: relative;
}
.signature-div {
    height: 2.5rem;
    width: 10rem;
    justify-content: flex-start;
    line-height: 2.5rem;
    text-align: center;
}
.sig-sides {
    cursor: pointer;
}
.sig-arrow {
    width: 25px;
    height: 25px;
    border-top: 3px solid var(--secColor);
    border-left: 3px solid var(--secColor);
    position: absolute;
}
.sig-left {
    width: 50px;
    height: 50px;
}
.sig-arrow-left {
    transform: rotate(-45deg);
    transition: 100ms linear;
}
.sig-left:hover .sig-arrow-left {
    transform: translate(-10px, 0) rotate(-45deg);
}
.sig-right {
    width: 50px;
    height: 50px;
}
.sig-arrow-right {
    transform: rotate(135deg);
    transition: 100ms linear;
}
.sig-right:hover .sig-arrow-right {
    transform: translate(10px, 0) rotate(135deg);
}
.piano {
    width: 62vw;
    height: 15vw;
    cursor: crosshair;
    font-size: 0.8vw;
}
.key {
    display: flex;
    justify-content: center;
    border: 2px solid;
    /* background-color: black; */
    background-color: var(--priColor);
}
.wKey {
    flex-grow: 1;
    height: 100%;
    border-right: solid 1px;
    border-left: solid 1px;
    position: relative;
}
.bKey {
    width: 1.8vw;
    height: 9.4vw;
    /* line-height: 15vw; */
    margin-top: -2px;
    border-top: 2px;        /* delete this for round top edges */
    border-color: var(--secColor);
    border-top-color: var(--priColor);
    border-bottom-right-radius: 0.2vw;
    border-bottom-left-radius: 0.2vw;
    position: absolute;
    z-index: 4;
}
.label {
    width: 100%;
    height: 100%;
    text-align: center;
    overflow: hidden;
    position: absolute;
}
.wLabel {
    line-height: 25vw;
}
.bLabel {
    line-height: 15vw;
}
.fullborderRight {
    border-right: solid 1px var(--secColor)
}
.fullborderLeft {
    border-left: solid 1px var(--secColor)
}
.right-bound {
    margin-left: 2.6vw;
}
.left-bound {
    margin-left: 3.25vw;
}
.middle-bound {
    margin-left: 2.8vw;
}
#c1 {
    border-left: 2px solid;
    border-top-left-radius: var(--border);
    border-bottom-left-radius: var(--border);
    border-color: var(--secColor);
}
#c4 {
    border-right: 2px solid;
    border-top-right-radius: var(--border);
    border-bottom-right-radius: var(--border);
    border-color: var(--secColor);
}
.percussion {
    width: 2.5rem;
    height: 2rem;
    border: 2px solid var(--secColor);
    border-radius: 3px;
    cursor: pointer;
}
.hihat {
    border-bottom-left-radius: 10px;
}
.bass {
    width: 7.75rem;
}
.tom {
    border-bottom-right-radius: 10px;
}

.pagetwo {
    width: 100vw;
    height: 100vh;
    /* border-top: solid 1px var(--secColor);
    border-bottom: solid 1px var(--secColor); */
}
.text {
    width: 40vw;
}
.textBackground {
    background-color: var(--priColor);
    /* padding: 2px; */
    /* background-color: rgba(255, 255, 255, .7); */
}

.pagethree {
    width: 100vw;
    height: 100vh;
}

.navbar-container {
    width: 6rem;
    padding-right: 2rem;
    height: 100vh;
    top: 0;
    position: fixed;
    background-color: rgba(0, 0, 0, .0);
    overflow-y: scroll;
    scrollbar-width: thin;
    direction: rtl;
    z-index: 99;
    transition: width 200ms ease;
}
.navbar-container::-webkit-scrollbar {
    width: .4vw;
}
.navbar-container::-webkit-scrollbar-thumb {
    background-color: #7775;
    border-radius: 5px;
}
.navbar-container::-webkit-scrollbar-thumb:hover {
    background-color: #777;
}
.navbar-container:hover {
    width: 20rem;
}
.navbar-container:hover .pageText {
    color: var(--secColor);
    opacity: 1;
}
.navbar {
    padding: 10px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
}
.page {
    width: 100%;
    height: 10rem;
    margin: .5rem;
    background-color: var(--priColor);
    color: var(--priColor);
    text-align: center;
    overflow: hidden;
    white-space: nowrap;
    border: 2px solid var(--secColor);
    border-radius: 5px;
    cursor: pointer;
    transition: color .2s;
}
.pageText {
    opacity: 0;
}

.helpScreenContainer {
    width: 100vw;
    height: 100vh;
    top: 0;
    position: fixed;
    background-color: rgba(0, 0, 0, .8);
    z-index: 99;
    animation: fadein 0.2s ease-in;
}
.helpScreen {
    justify-content: flex-start;
    flex-direction: column;
    /* height: 60em; */
    width: 60em;
    padding: 2em;
    /* background-color: rgb(24, 24, 24); */
    /* border: solid white 2px; */
    border-radius: 10px;
}
.activateHelp {
    position: absolute;
    top: 0;
    right: 0;
    font-size: xx-large;
    padding-top: 1vh;
    padding-right: 1vw;
    cursor: pointer;
    z-index: 98;
}
.noticeContainer {
    width: 100vw;
    height: 20vh;
    margin: auto;
    bottom: 5px;
    position: fixed;
}
.noticeActive {
    font-size: small;
    text-align: center;
    bottom: 2vh;
    background: var(--priColor);
    border: solid 2px var(--secColor);
    width: 10rem;
    height: 4rem;
    position: relative;
    border-radius: 5px;
    opacity: 0%;
    animation: fadeinout 4s;
}

@keyframes logo {
    from {
        opacity: 30%;
        transform: rotate(-80deg);
    } to {
        opacity: 100%;
        transform: rotate(0deg);
    }
}
@keyframes fadein {
    0% {opacity: 0%;}
    100% {opacity: 100%;}
}
@keyframes fadeinout {
    0% {opacity: 0%;}
    50% {opacity: 100%;}
    100% {opacity: 0%;}
}

/* @keyframes rotate {
    0% { transform: rotate(3deg); }
    10% { transform: rotate(-2.9deg); }
    20% { transform: rotate(2.8deg); }
    30% { transform: rotate(-2.7deg); }
    40% { transform: rotate(2.6deg); }
    50% { transform: rotate(-2.5deg); }
    60% { transform: rotate(2.4deg); }
    70% { transform: rotate(-2.3deg); }
    80% { transform: rotate(2.2deg); }
    90% { transform: rotate(-2.1deg); }
    100% { transform: rotate(2deg); }
}
@keyframes rotate2 {
    0% { transform: rotate(2deg); }
    10% { transform: rotate(-1.9deg); }
    20% { transform: rotate(1.8deg); }
    30% { transform: rotate(-1.7deg); }
    40% { transform: rotate(1.6deg); }
    50% { transform: rotate(-1.5deg); }
    60% { transform: rotate(1.4deg); }
    70% { transform: rotate(-1.3deg); }
    80% { transform: rotate(1.2deg); }
    90% { transform: rotate(-1.1deg); }
    100% { transform: rotate(1deg); }
}
@keyframes rotate3 {
    0% { transform: rotate(1deg); }
    10% { transform: rotate(-0.9deg); }
    20% { transform: rotate(0.8deg); }
    30% { transform: rotate(-0.7deg); }
    40% { transform: rotate(0.6deg); }
    50% { transform: rotate(-0.5deg); }
    60% { transform: rotate(0.4deg); }
    70% { transform: rotate(-0.3deg); }
    80% { transform: rotate(0.2deg); }
    90% { transform: rotate(-0.1deg); }
    100% { transform: rotate(0deg); }
} */

@keyframes shake {
    0% { transform: translate(3px); }
    10% { transform: translate(-2.9px); }
    20% { transform: translate(2.8px); }
    30% { transform: translate(-2.7px); }
    40% { transform: translate(2.6px); }
    50% { transform: translate(-2.5px); }
    60% { transform: translate(2.4px); }
    70% { transform: translate(-2.3px); }
    80% { transform: translate(2.2px); }
    90% { transform: translate(-2.1px); }
    100% { transform: translate(2px); }
}
@keyframes shake2 {
    0% { transform: translate(2px); }
    10% { transform: translate(-1.9px); }
    20% { transform: translate(1.8px); }
    30% { transform: translate(-1.7px); }
    40% { transform: translate(1.6px); }
    50% { transform: translate(-1.5px); }
    60% { transform: translate(1.4px); }
    70% { transform: translate(-1.3px); }
    80% { transform: translate(1.2px); }
    90% { transform: translate(-1.1px); }
    100% { transform: translate(1px); }
}
@keyframes shake3 {
    0% { transform: translate(1px); }
    10% { transform: translate(-0.9px); }
    20% { transform: translate(0.8px); }
    30% { transform: translate(-0.7px); }
    40% { transform: translate(0.6px); }
    50% { transform: translate(-0.5px); }
    60% { transform: translate(0.4px); }
    70% { transform: translate(-0.3px); }
    80% { transform: translate(0.2px); }
    90% { transform: translate(-0.1px); }
    100% { transform: translate(0px); }
}
.shake {
    animation: shake 1s, shake2 1s 1s, shake3 1s 2s;
}




  
.keyboard {
    /* text-align: center; */
}

.keyboard__row {
    display: inline-block;
    height: 3em;
    margin: 0.2em;
}

.keyboard__row--h1 {
    height: 1.7em;
    line-height: 1.4em;
}

.keyboard__row--h3 {
    height: 3em;
}

.keyboard__row > * {
    background-color: black;
    position: relative;
    float: left;
    border-radius: 0.3em;
    margin: 0.2em;
    padding: 0.2em;
    width: 3.3em;
    height: 100%;
    border: 2px solid rgb(255, 255, 255);
}

.keyboard__row--h1 > div {
    width: 3.5em;
}

.key--w3 {
    width: 4.6em;
}

.key--w4 {
    width: 6em;
}

.key--w5 {
    width: 6.5em;
}

.key--w6 {
    width: 8.3em;
}

.key--space {
    width: 18em;
}

.key--letter { background-color: rgb(130, 2, 2) }
.key--percussion { background-color: rgb(0, 88, 0) }
.key--shift { background-color: rgb(0, 0, 117) }
.key--sig { background-color: rgb(122, 122, 0) }
.key--delete { background-color: rgb(115, 0, 115) }

.leg--letter { color: rgb(130, 2, 2) }
.leg--percussion { color: rgb(0, 88, 0) }
.leg--shift { color: rgb(0, 0, 117) }
.leg--sig { color: rgb(122, 122, 0) }
.leg--delete { color: rgb(115, 0, 115) }

.key--arrow {
    height: 1.5em;
    margin-top: 1.7em;
    line-height: 0.5em;
}