.carousel-container {
  width: 100%;
  height: 80%; /* Adjust height as needed */
  overflow: hidden;
  /*position: relative;
  top: 100px;
  left: 300px;*/
}

.carousel-item {
    width: 100%;
    height: 100%;
    display: none;
 }

.carousel-item img {
  width: 100%;
  height: 80%;
  object-fit: cover;
}
.button-container {
    /* top: 100px;
  left: 450px;
  position: relative;*/
    width: 100%;
    text-align: center;
}

.button-gallery{
    margin: 10px 10px 10px 10px;
    display: inline-block;
    padding: 10px 30px;
    font-size: 16px;
    cursor: pointer;
    text-align: center;
    text-decoration: white;
    outline: none;
    background-color:#00a499;
    color: white;
    border: #00a499;
    border-radius: 15px;
    /* box-shadow: 0 9px #999; */
    transition-duration: 0.4s;
}


.button-gallery:hover {
   color: black;
   background-color: #00a499;
   box-shadow: 0 12px 16px 0 rgba(0,0,0,0.24), 0 17px 50px 0 rgba(0,0,0,0.19);
}

.button-gallery:active {
   background-color: #00a499;
   box-shadow: 0 5px #666;
   transform: translateY(4px);
}

.carousel-item h2 {
    margin-top:10px;
    margin-bottom:10px;
}

.carousel-item p {
   font-size: 17px;
}

.gallery-article-body
{

    margin-bottom: 15px;
}