div.horizontal {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

div.vertical {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-right: 10px;
}

.body-home {
    background: linear-gradient(to bottom, rgba(0, 0, 0, .9) 20%, rgba(0, 0, 0, .8) 100%), url("../../static/assets/img/keyboard_hands.jpg");
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-position: center center;
    height: 100vh;
}

img.chat_avatar {
    position:absolute;
    bottom:1000px;
    right:100px;  
    max-width: 20px;  
}

.fixed-icon {
    position: fixed;
    bottom: 20px; /* Distance from the bottom */
    right: 20px; /* Distance from the right */
    z-index: 1000; /* Makes sure it stays on top of other elements */
}

.fixed-icon img {
    width: 50px; /* Adjust the size of the icon */
    height: 50px; /* Adjust the size of the icon */
}

.image-container {
    position: relative;
    display: inline-block;
  }
  
  .image-container img {
    display: block;
    width: 100%;
    height: auto;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, .2) 0%, rgba(0, 0, 0, .4) 100%);
    /* mask-image: rgb(0, 0, 0, .3); */
  }
  
  .overlay-text {
    position: absolute;
    top: 50%; 
    left: 50%; 
    transform: translate(-50%, -50%); 
    color: #fff; 
    font-weight: 700;
    padding: 10px 5px; 
    font-size: 16px; 
    text-align: center;
    text-shadow: black;
  }
