#pages{
    text-align: center;
  margin-top: 0;
  z-index: 9999;
}
.page{
    width: 60%;
    margin: 10px;
    box-shadow: 0px 0px 5px #000;
    animation: pageIn 1s ease;
    transition: all 1s ease, width 0.2s ease;
   z-index: 9999;
  
}
@keyframes pageIn{
  0%{
      transform: translateX(-300px);
      opacity: 0;
  }
  100%{
      transform: translateX(0px);
      opacity: 1;
  }
}

#draggable {
   width: 150px;
   height: auto;
   padding-top: 20px;
   padding-bottom: 10px;
   padding-left: 20px;
   padding-right: 20px;
   border: none;
   background-color: transparent;
  cursor: move;
  right: 15px;
  }


  input {
   width: 150px;
   color: black;
   font-size: 16px;
   text-align: center;
   height: 40px;
   border: none;
   background-color: transparent;
    padding-right: 10px;
    padding-left: 10px;
  }

input:hover {
   cursor: move;
  color: blue;
  }

  h4 {
   font-size: 20px;
   width: 100%;
   text-align: center;
   color: black;
   cursor: move;
  }