#showMessages, #messages, #message2 {
    height: 75vh !important;
    overflow: auto;
}

.message {
    height: 50vh;
    overflow: auto;
}

#slide {
    position: fixed;
    left: 30%;
    right: 30%;
    height: 55px;
    top: -100px;
    z-index: 10000000;
    animation-name: slidein; 
    animation-duration: 3s;
    animation-timing-function: ease-out;
    animation-iteration-count: 2;
    animation-direction: alternate;
    
    
}

@keyframes slidein {
    0% {
      top: -100px;
      
    }
    70% {
        top: 0;
        
      }
    100% {
      top: 0;
      
    }
  }
  