.newPost{
    display: flex;
    justify-content: center;
    width: 60px;
    height: 60px;
    color: white;
   
    text-align: center;
    border-radius: 30px;
    border: solid 2px rgba(255, 255, 255, 0.414);
    background-color: rgba(255, 255, 255, 0.214);
    position: fixed;
    bottom: 20px;
    right: 20px;
    outline: none;
    transition: background-color,width 0.2s ease;
}
.newPost:hover{
    background-color: rgba(255, 255, 255, 0.4106);
    cursor: pointer;
  
}
.textPost{
    color: white;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 18px;
    font-weight: 600;
    width:0px;
    height: 0px;
    opacity: 0;
}
button.newPost .lnr-pencil{
    color: white;
}
.postButton:hover{
    
    border-radius: 30px;
    width: 200px;
}