* {
    box-sizing: border-box; /* Include padding and borders in all width/height calculations */
}

.logo {
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
    width: 400px;
}  

h1 {
    margin-top:40px;
    text-align: center;
}
.carousel {
    max-width: 500px;
    position: relative;
    margin: auto;
  }

  .img-text {
    color: black;
    background-color: #ffffffa0;
    font-size: 30px;
    padding: 8px 12px;
    position: absolute;
    bottom: 0;
    width: 100%;
    text-align: center;
  }

  .slides {
    margin-top: 10px;
    display: none;

    border: 10px solid black;
    border-radius: 12px;
    padding: 0px;
  }

  .prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -22px;
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
  }

  .next {
    right: 0;
    border-radius: 3px 0 0 3px;
  }

  .prev:hover, .next:hover {
    background-color: rgba(0,0,0,0.8);
  }

  .dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 5 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
  }
  
  .active, .dot:hover {
    background-color: #717171;
  }
  
  /* Fading animation */
  .fade {
    animation-name: fade;
    animation-duration: 1.5s;
  }
  
  @keyframes fade {
    from {opacity: .4}
    to {opacity: 1}
  }

.project-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 80%;
  height:auto;
  margin: 0 auto; 
}

  .project-box {
    position: relative;
    margin: 10px;  /* Spacing between items */
    width: calc(30% - 20px);  /* Adjust width minus the margin */
    max-width: 300px;
    height: auto; /* Keep the aspect ratio of images */
    border: 5px solid black;
    border-radius: 12px;
  }

.banner{
  background-color: #01162760;
  box-shadow: 0 10px 10px rgba(0,0,0,0.5); /* Optional: adds shadow for better visibility */
}
