nav {
    background-color: #b58863;
    padding: 10px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    margin-bottom: 100px;
    display: flex;
}
nav a, .dropbtn {
    display: inline-block;

    background-color: #f0d9b5;
    margin: 5px;
    padding: 10px;
    border-radius: 5px;
    color: black;
    text-decoration: none;

    transition-duration: 500ms;

    display: flex;
    align-items: center;
    justify-content: center;
}
nav a:hover {
    background-color: bisque;
    transform: translate(0, -3px);
}

.colu {
    margin-top: 30px;
    padding: 5%;
    justify-content: space-between;
}
.rowu {
    display: flex;
    background-color: aqua;
    margin-top: 60px;
}



.textt {
  margin-left: 50px;
  margin-right: 50px;
 
 background-color: #b58863; 

  width: 75%;
  margin: auto;
  margin-top: 150px;
  padding: 20px;

  border: 2px solid black;
  border-radius: 30px;
}

body {
  background-image: url("https://t3.ftcdn.net/jpg/00/17/20/50/360_F_17205038_hgzmLmIIwmCs15SbpsWolqqQz3PLa3O8.jpg");
}






/* image ''
img: image + '?t=' + unique_id(); */

main {
  font-family: Helvetica, Arial, sans-serif;
  max-width: 800px;
  margin: 10px auto;
  
  a {
    color: #a00;
    
    &:hover {
      text-decoration: none;
    }
  }
  
  h1 {
    font-size: 1.75em;
    font-weight: lighter;
  }
  
  h3 {
    font-size: 1.2em;
    margin-bottom: 1em;
    color: #333;
  }
  
  h1, h3, p {
    text-align: center;
  }
  
  p {
    font-weight: bold;
  }
}





body {
  font-family: Arial, Helvetica, sans-serif;
}

.navbar {
  overflow: hidden;
  background-color: #333;
}

.navbar a {
  float: left;
  font-size: 16px;
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

.dropdown {
  float: left;
  overflow: hidden;
}

.dropdown .dropbtn {
  font-size: 16px;  
  border: none;
  outline: none;
  /* color: white; */
  padding: 14px 16px;
  /* background-color: inherit;
  font-family: inherit;
  margin: 0; */
}

.navbar a:hover, .dropdown:hover .dropbtn {
  background-color: red;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content a {
  float: none;
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

.dropdown-content a:hover {
  background-color: #ddd;
}

.dropdown:hover .dropdown-content {
  display: block;
}






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

/* Slideshow container */
.slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
}

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

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: rgb(0, 0, 0);
  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;
}

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

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


/* 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}
}

.slideshow-container {
max-width: 1000px;
position: relative;
margin:auto;

background-color: white;
padding-top: 30px;
padding-bottom: 30px;
margin-bottom: 40px;

border-radius: 30px;
}

.slideshow-container p {
    padding-left: 50px;
    padding-right: 50px;
}