@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;500;600&display=swap');


body {
    font-family: "cairo" ;
    font-size: 1.3em;
    font-weight: 600;
    background-color: whitesmoke;
}

#inputs { 
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    flex-wrap: wrap;
    background-color: aqua;
    
}
#inputs div {
    margin: 5px;   
}

#canvas {

    top: 50%;
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
}
footer {
    margin: 0;
    padding: 0;
    background-color: aqua;
    position:absolute;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: center;
    
}
footer p {
    margin: 0;
}

footer a {
    color: whitesmoke;
}
.button-57 {
    position: relative;
    overflow: hidden;
    border: 0px solid #18181a;
    color: white;
    display: inline-block;
    font-size: 15px;
    line-height: 15px;
    padding: 18px 18px 17px;
    text-decoration: none;
    cursor: pointer;
    background: black;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
  }
  
  .button-57 span:first-child {
    position: relative;
    transition: color 600ms cubic-bezier(0.48, 0, 0.12, 1);
    z-index: 10;
  }
  
  .button-57 span:last-child {
    color: white;
    display: block;
    position: absolute;
    bottom: 0;
    transition: all 500ms cubic-bezier(0.48, 0, 0.12, 1);
    z-index: 100;
    opacity: 0;
    top: 50%;
    left: 50%;
    transform: translateY(225%) translateX(-50%);
    height: 14px;
    line-height: 13px;
  }
  
  .button-57:after {
    content: "";
    position: absolute;
    bottom: -50%;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: aqua;
    transform-origin: bottom center;
    transition: transform 600ms cubic-bezier(0.48, 0, 0.12, 1);
    transform: skewY(9.3deg) scaleY(0);
    z-index: 50;
  }
  
  .button-57:hover:after {
    transform-origin: bottom center;
    transform: skewY(9.3deg) scaleY(2);
  }
  
  .button-57:hover span:last-child {
    transform: translateX(-50%) translateY(-100%);
    opacity: 1;
    transition: all 900ms cubic-bezier(0.48, 0, 0.12, 1);
  }