.left-info{
    position: fixed;
    
    display: flex;
    border-radius: 20px 0px 0px 20px;
    top: 150px;
    width: 400px;
    height: 380px;
    right: -350px;
    background-color: aliceblue;
    transition: right 0.5s ease-in-out;
    
}

.left-info h1{
    writing-mode: vertical-rl;
    font-size: 20px;
    padding: 20px;
    margin: 0 auto;
    
}

.left-info:hover{
    right: -5px;
}

.info-text{
    flex: 1;
    padding: 20px;
    font-family: sans-serif;
    background-color: rgb(39, 39, 39);
    justify-content: center;
    word-wrap: break-word;
overflow: hidden;
}

.info-text p{
    
     color: white;
    font-size: 12px;
    line-height: 1.5;
    margin: 0;
}