.title {
    display: flex;
    gap: 10px;
    margin-top:100px;
    
    
}
.title2{
    display:flex;
    flex-direction: column;
    align-content:center;
    text-align: center;
    padding: 5px;
    border-width: 2px;
    border-color: black;
    border-style: solid;
    flex-grow: 1;
    border-radius: 15px;
    margin: auto;
    width: 50%;
    border: 3px solid black;
    padding: 50px;
    background-color: white;
}



.row{display:flex;
    text-align:center;
    
    
}

.col{padding: 20px;
margin: 100px;
background-color: white;
width:100%;
border-radius: 15px;
margin: 5%;
border-color: black;
border-width: 1px;
border-style: solid;
}

.colimg{
    width: 300px;
    max-width: 100%;
    display: block;
    margin: auto;
    border-radius: 20px;
}


body{background-color: beige;}

.about{text-align: center;}

.row2{display:flex;
    text-align:center;
    flex-wrap: wrap;
    
}

.col2{width: calc(33% - 60px);
    
padding:20px;
background-color: white;
border-radius: 15px;
margin:10px;
display:flex;
flex-wrap: wrap;
border-color: black;
border-width: 1px;
border-style: solid;



}

.sd{ text-align: center;}


nav {
    background-color: white;
    padding: 15px;
    border-width: 2px;
    border-color: black;
    border-style: solid;
    border-radius: 5px;
    position:fixed;
    top:0;
    left: 0;
    margin: 5px;
    width: 97.5%;
    
}

nav a {
    color: black;
    text-decoration: none;
   
    transition-duration: 500ms;
    margin:5px;
}

nav a:hover{ 
    padding: 5px;
    border-radius: 2px;
    border-width: 1px;
    border-color:black;
    border-style: solid;
    margin-top:50px;
    background-color:lightgray;

}

ul {
    list-style-type: none;
    margin: 0;
    padding: 0px;
    overflow: hidden;
    background-color: white;
    border-radius: 40px;
    padding: 7.5px;
  }
  
  li {
    float: left;
  }
  
.review{padding:20px;
    background-color: white;
    border-radius: 15px;
    margin: 10px;
    
}

.event{padding:20px;
    background-color: white;
    border-radius: 15px;
    margin: 10px;
    border-color: black;
border-width: 1px;
border-style: solid;
}

h3{text-align: center;}


.slideshow-container * {box-sizing:border-box}

/* Slideshow container */
.slideshow-container {
  max-width: auto;
  position: relative;
  margin: auto;
  background-color: white;
  text-align: center;
  padding: 40px;
  border-radius: 15px;
  margin:10px ;
  border-color: black;
  border-width: 1px;
  border-style: solid;
}

/* Hide the images by default */
.mySlides {
  display: none;
}

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

}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

.prev {
    left:0;
    border-radius: 0 3px 3px 0;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
  color:#f2f2f2
}

/* Caption text */
.textsc {
  color: white;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
  color: black;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;

}

/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 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}
}

