/* defaults */

html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100vw;
  background-color: blanchedalmond;
  

  /* display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center; */
  /* background-color: black; */
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smooth: always;
  text-rendering: optimizeLegibility;
  overflow: hidden;
}
a {
  position: -webkit-sticky;
  position: sticky;
  bottom: 0;
  text-decoration: none;
  color: black;
}

a :hover {
  cursor: pointer;
  z-index: 10000000;
  color: cadetblue !important;
}
canvas{
  pointer-events: none;
  position: absolute;
  z-index: 12;
  width: 100%;
  height: 100%;
}
@font-face {
  font-family: "roslinDislpayUltra";
  src: url("./fonts/Roslindale-DisplayUltra-Edu.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}
.keyboard-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 100vw;
  height: 90vh;
}
.keyboard {
  color: black;
  display: flex;
  font-family: "roslinDislpayUltra";
  font-size: 16px;
  font-weight: 300;
  /* grid-template-columns: repeat(20, 17px);
  grid-template-rows: repeat(10, 34px); */
  
  align-items: center;
  letter-spacing: 1px;
  line-height: 24px;
  padding: 16px;
  /* transform-origin: bottom left; */
}
.key {
  align-items: center;
  border-radius: 4px;
  cursor:none;
  display: flex;
  flex-direction: column;
  grid-column-end: span 4;
  grid-row-end: span 2;
  grid-template-columns: repeat(2, 32px);
  grid-template-rows: repeat(2, 32px);
  justify-content: center;
  padding: 5px 9px;
  margin: 2px;
}

img{
  z-index: 1000;
  max-height: 5vh;
  max-width: 100%;
}

.key__bottom,
.key__top{
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition-timing-function: ease-out;
  transform: scale(1) rotate(0deg);
  
 
}
.key__bottom{
  flex-grow: 1;
  font-size: 8rem;
  line-height: 20vh;
  z-index: -100;
}

#one{
 scale: 1; 
}
.return{
  display: flex;
  flex-direction: column;
  bottom:0;
  font-family: "roslinDislpayUltra";
  font-size: 16px;
  font-weight: 300;
  align-items: center;
  letter-spacing: 1px;
  line-height: 24px;
  padding: 16px;
}

