/* Base Styling */

/* Tag Styling */

body {
  padding: 1em 1em 1em 1em;
  margin-bottom: 10px;
}

button {
  border: 0px;
  outline: 0px;
}

button:focus {
  border: 0px;
  outline: 0px;
}

button:select {
  border: 0px;
  outline: 0px;
}


/* Class Styling */

.carouselButton {
  width: 50px;
  height: 200px;
  background-color: orange;
}

.listHeader {
  list-style: none;
  font-style: italic;
  font-weight: bold;
}

.mySlides {
  width: 90%;
  max-height: 500px;
  image-orientation: from-image;
  margin: auto;
}


/* ID Selectors */

#carousel_container {
  display: flex;
  flex-direction: row;
  position: relative;
  max-height: 500px;
  max-width: 100%;
  align-items: center;
  justify-content: space-between;
}

#img-caption {
  position: absolute;
  border: 5px solid darkorange;
  bottom: 0%;
  left: 10%;
  background-color: lightyellow;
  z-index: 1;
}

#leftButton {
  display: inline-block;
  position: relative;
  left: 0%;
  z-index: 1;
}

#main-footer {
  margin-left: 0em;
}

#main-header {
  margin: auto;
  width: 50%;
  text-align: center;
}

#pro-con {
  margin: auto;
  width: 50%;
  background-color: lightyellow;
  border: 10px solid darkorange;
  padding: 10px;
}

#rightButton {
  display: block;
  position: relative;
  right: 0%;
}


/* Media Queries */

@media all and (min-width: 640px) {

  .mySlides {
    border: none;
  }

  #pro-con {
    display: inline;
    float: right;
    border: 10px solid darkorange;
  }

}

@media all and (min-width: 800px) {

  #carousel_container {
    max-width: 800px;
    margin: auto;
  }

  /* .carouselButton {
    position: absolute;
  } */

  .myslides {
    border: none;
  }

  .nav-bar {
    flex: none;
  }

}
