
* {box-sizing: border-box;}
body {
     font-family: Verdana, sans-serif;
     background: url("https://s3-us-west-2.amazonaws.com/s.cdpn.io/38816/image-from-rawpixel-id-2044837-jpeg.jpg");
     margin: 0;
}
h2{
    font-size: 20px;
    color: white;
    text-align: center;
    text-shadow: 0 0 2px rgb(244, 87, 3);
}
.nav-item{
    list-style: none;
    font-size: large;
}
a{
    color: white;
    text-decoration: none;
}      
.navbar{
    min-height: 55px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 24px;
    background-color: rgb(255, 196, 182);
}      
.nav-menu{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
}
.nav-branding{
    font-size: 2rem;
}     
.nav-branding:hover {
    color: orangered;
}     
.nav-link{
    display: block;
    width: 200px;
    margin-left: auto;
    margin-right: auto;
    transition: 0.7 ease;
    text-align: center;
}     
.nav-link:hover{
    color: orangered;
}     
.hamburger{
    display: none;
    cursor: pointer;
}     
.bar{
    display: block;
    width: 35px;
    height: 3px;
    margin: 5px auto;
    -webkit-transition: all 0.3s ease-in-out;
    transition:  all 0.3s ease-in-out;
    background-color: white;
}     
.mySlides {
  display: none;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
img {
  width: 100%;
  height: 500px;
  margin-left: auto;
  margin-right: auto;
}
/* Slideshow container */
#slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
  margin-bottom: 5px;
}
/* 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: 15px;
  padding: 8px 12px;
  position: absolute;
  top: 12px;
  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;
  margin-top: 2px;
  margin-bottom: 15px;
}
.active {
  background-color: #717171;
}
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

@media only screen and (max-width: 300px) {
  .text {font-size: 11px}
}

@media only screen and (min-width: 500px) {
  img {
    width: 500px;
    height: 650px;
    margin-left: auto;
    margin-right: auto;
  }
}  

@media(max-width:768px){
.hamburger{
  display: block;
}
.hamburger.active .bar:nth-child(2){
  opacity: 0;
}
.hamburger.active .bar:nth-child(1){
  transform: translateY(8px) rotate(45deg);
}  
.hamburger.active .bar:nth-child(3){
  transform: translateY(-8px) rotate(-45deg);
}  
.nav-menu{
  position:fixed;
  left: -100%;
  top: 70px;
  gap: 0;
  flex-direction: column;
  background-color: rgb(255, 196, 182);
  width: 100%;
  text-align: center;
  transition: 0.3s;
  z-index: 1;
}  
.nav-item{
  margin: 16px 0;
}  
.nav-menu.active{
  left: 0;
}
}