/* styles.css */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
body {
    background-color: #E7E8D1;
}
/*header*/
.header{
  font-size:30px;
  padding:28px; 
  background-color: #B85042; 
  color: black;
  width: 100%;
}
/*container for logo*/
.mb-contrainer{
  align-items: center;
  display: flex;
  position: absolute;
  color: rgb(17, 17, 17);
  font: lighter; 
}
.image-container-logo{
  width: 100px;
  background-color: transparent;
  margin-right: 10px;
}
/*container for upper navigation*/
.nav-container{
  display: flex;
  justify-content: center;
  align-items: center;
}
.nav-container a{
  color: #E7E8D1;
  padding: 15px 20px;
  text-decoration: none;
}

.nav-container a:hover {
  background: #E7E8D1;
  color: black;
  border-radius: 25px;
}
/*container for header images*/
.img-container-right{ 
  display: flex;
  position: absolute;
  top: 20px;
  flex-direction: row; 
  right:0;
}
.img-container-right img{
  width: 100px;
  background-color: transparent;
  margin-right: 30px;
}
.row {
  display: flex;
  flex-wrap: wrap;
}
/*side navigation*/
.sidenav {
  position:relative;
  width: 15%;
  background-color: #A7BEAE;
  padding: 15px;
  color: rgba(26, 26, 26, 0.966);
  text-underline-offset: 4px;
  font-size:large;
}
.sidenav h1, .sidenav h2{
  padding: 5px;
}
.sidenav p{
  margin-left: 10px;
  padding:8px;
}
.sidenav a{
  text-decoration: none;
  color: rgba(26, 26, 26, 0.966);
  padding:10px;
}
.sidenav a:hover{
  background: #E7E8D1;
  color: #B85042;
  border-radius: 25px;
}
/*main article*/
.article {
  width: 85%;
  padding: 2px;
  padding-left: 40px;
  color: black;
  background-color: #E7E8D1;
  font-size:larger;
  padding-bottom: 60px;
  
}
/* Slideshow container */
.slideshow-container {
  max-width: 500px;
  position: relative;
  margin: auto;
}

/* 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: #E7E8D1;
  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: #B85042;
}

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

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

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}
.footer {
  width: 100%;
  bottom: 0%;
  position: sticky;
  background-color: #B85042;
  padding: 8px;
  text-align: center;
  color: #E7E8D1;
}
  @media screen and (max-width: 1450px) {
    .img-container-right{
      display:none;
    }
    .climbing{
      display:none;
    }

    .mb-contrainer{
      display: flex;
      position: relative;
      justify-content: center;
      align-items: center;
    }
    .sidenav{
      display: none;
    }
    .article{
      width: 100%;
    }
  }
  