*{
    margin: 0;
    padding: 0;
}

body {
    /* background-color: #e1e17b57; */
    background-color: #72722d91;
}
  
.navbar {
    background-color: #e1e17b57;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
    display: flex;
    justify-content: space-between;
    padding: 7px 20px;
    font-family: Brush Script MT, Brush Script Std, cursive;
    border: 4px solid #72722d91;
    border-radius: 10px;
    overflow: hidden;
    
}

.navbar-brand a {
color: #333;
font-size: 32px;
font-weight: bold;
text-decoration: none;
}

.navbar-links {
display: flex;
justify-content: flex-end;
list-style: none;
margin: 0;
/* padding: 0; */
padding-right: 32px;
}

.navbar-links li {
margin-left: 20px;
}

.navbar-links a {
color: #333;
font-size: 31px;
text-decoration: none;
font-weight: 300;
padding-right: 10px;
}
  
.carousel-container {
    position: relative;
    overflow: hidden;
    border: 2px solid #ccc;
    border-radius: 17px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  }
  
  
  .carousel-slide {
    display: flex;
    width: 302%;
  }
  
  .carousel-slide img {
    width: 33.33%;
    /* height: auto; */
    height: 630px;
  }
  
  .carousel-prev,
  .carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    font-size: 24px;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    border-radius: 30%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  }
  
  .carousel-prev {
    left: 0;
  }
  
  .carousel-next {
    right: 0;
  }

  footer {
    /* background-color: #f2f2f2; */
    padding: 10px;
    text-align: center;
  }
  
  .connect {
    display: flex;
    justify-content: center;
  }
  
  .connect a {
    display: inline-block;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #333;
    color: #fff;
    font-size: 30px;
    text-align: center;
    line-height: 60px;
    margin: 10px;
    transition: all 0.3s ease;
    text-decoration: none; /* Remove underline */

  }
  
  .connect a:hover {
    transform: scale(1.2);
  }
  
