/* home-page.css */

#panel-wrapper{}
.panels{}

.text-bubble{
  background-color:#db9422;
  margin: auto;
  margin-top:25px;
  border-radius: 15px;
  max-width:375px;
  border: 2px solid black;  
}

h2 {text-align:center;}
h3 {text-align:center;color:red;}

.img-fluid{
            max-width: 405px;
            height: auto;
            object-fit: cover;
          }

.container {
  display: flex;
  align-items: center;       /* Centers vertically */
  justify-content: center;   /* Optional: Centers horizontally too */
  height: 154px;             /* Requires a defined height */
}

@media (max-width: 768px) {
  .img-fluid{max-width: 300px;}
}


