body {
    background-image: url(https://cdn.architextures.org/textures/23/6/leaves-multicoloured-print-none-twinbru-textiles-3hgod8.jpg);
    padding: 10px;
    font-family: 'Amaranth', sans-serif;
}

.container1 {
    margin: 2em auto;
    max-width: 80em;
    border: 8px solid;
    border-color: #9B4444;
    border-radius: 20px;
    padding: 15px;
	background-image: url(https://cdn.architextures.org/textures/23/10/plain-white-texture-twinbru-textiles-8aywdf.jpg);
	height: 1300px;
}
/* these control the column widths */
.small { flex: 1 1 9%; }
    
.large { flex: 1 1 82%; }

.full { flex: 1 1 100%; }

.half { flex: 1 1 49%; }

.header1 {
    text-align: right;
	background-size: cover;
	height: 250px; /* change banner height here*/
	border: 5px solid #C68484;
	border-radius: 20px;
	padding: 15px;
}

.header2 {
    text-align: right;
	background-size: cover;
	height: 250px; /* change banner height here*/
	border: 5px solid #C68484;
	border-radius: 20px;
	padding: 15px;
	margin-top: 10px;
}

nav {
    border: 5px solid #C68484;
	border-radius: 20px;
	padding: 15px;
	margin-top: 10px;
    overflow: auto;
    background-color: #EEEEEE;
}

nav a {
  float: left;
  color: #9B4444;
  text-decoration: none;
  font-size: 20px;
  width: 20%; /* Four links of equal widths */
  text-align: center;
}

nav a:hover {
  background-color: #A3C9AA;
  border-radius: 10px;
}

.container2 {
    border: 5px solid #C68484;
	border-radius: 20px;
	padding: 15px;
	margin-top: 10px;
    overflow: auto;
    background-color: #EEEEEE;
}

.sidebar {
    flex: 1 1 9%;
    float: left;
    width: 20%;
    border: 5px solid #C68484;
	border-radius: 20px;
	padding: 15px;
	margin-top: 10px;
	margin-left: 10px;
	margin-right: 10px;
    overflow: auto;
    background-color: #EEEEEE;
    height: 585px;
    color: #5A827E;
    text-align: center;
}

.textbox1 {
    border: 5px solid #C68484;
	border-radius: 20px;
	padding: 15px;
	margin-top: 10px;
	margin-right: 10px;
    overflow: auto;
    background-color: #EEEEEE;
    height: 585px;
    color: #5A827E;
    text-align: left;
}

.boxtext2 {
    border: 5px solid #C68484;
	border-radius: 20px;
	padding: 15px;
	margin-top: 10px;
	margin-right: 10px;
    background-color: #EEEEEE;
    height: 585px;
    color: #5A827E;
    text-align: left;
    overflow: auto;
}

div .contentbox {
    border-color: black; 
    border: 2px solid #A3C9AA; 
    border-radius: 10px 10px 0px 0px; 
    padding: 15px; color: #5A827E; 
    font-size: 18px; 
    text-align: center;
}

img .image1 {
  display: flex;
}

p {
    font-family: 'Amaranth', sans-serif;
    letter-spacing: 2px;
    text-align: center;
    color: #5A827E;
}

a {
    color: #9B4444;
}




#myImg {
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
}

#myImg:hover {
  opacity: 0.7;
}

.modal {
  display: none;
  /* Hidden by default */
  position: fixed;
  /* Stay in place */
  z-index: 1;
  /* Sit on top */
  padding-top: 100px;
  /* Location of the box */
  left: 0;
  top: 0;
  width: 100%;
  /* Full width */
  height: 100%;
  /* Full height */
  overflow: auto;
  /* Enable scroll if needed */
  background-color: rgb(0, 0, 0);
  /* Fallback color */
  background-color: rgba(0, 0, 0, 0.9);
  /* Black w/ opacity */
}

.modal-content {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
}

#caption {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
  text-align: center;
  color: #ccc;
  padding: 10px 0;
  height: 150px;
}

.modal-content,
#caption {
  animation-name: zoom;
  animation-duration: 0.6s;
}

@keyframes zoom {
  from {
    transform: scale(0)
  }
  to {
    transform: scale(1)
  }
}

.close {
  position: absolute;
  top: 15px;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
}

.close:hover,
.close:focus {
  color: #bbb;
  text-decoration: none;
  cursor: pointer;
}

@media only screen and (max-width: 700px) {
  .modal-content {
    width: 100%;
  }
}




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

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -22px;
  color: white;
  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 grey background color */
.prev:hover, .next:hover {
  background-color: #f1f1f1;
  color: black;
}