.logs-div{
    font-family: 'Courier New', Courier, monospace;
    margin-top: 10px;
    width: 100%;
    min-height: 200px;
    background-color: rgb(21 27 55);
    border: 1px rgb(34 34 34) solid;
    border-radius: 5px;
    text-align: left;
    padding: 10px;
    color: #99eb1a;
    transition: 1s;
    -webkit-animation: slide 0.5s forwards;
    -webkit-animation-delay: 2s;
    animation: slide 0.5s forwards;
    animation-delay: 2s;
    overflow-y: scroll;
}

.logs-div::after{
    content: "\a";
    white-space: pre;
}

/* width */
.logs-div::-webkit-scrollbar {
    width: 10px;
  }
  
  /* Track */
.logs-div::-webkit-scrollbar-track {
    background: #f1f1f1; 
  }
   
  /* Handle */
.logs-div::-webkit-scrollbar-thumb {
    background: #888; 
  }
  
  /* Handle on hover */
.logs-div::-webkit-scrollbar-thumb:hover {
    background: #555; 
}