* {
  padding: 0px;
  margin: 0px;
  box-sizing: border-box;
}


main {
  max-width: 700px;
  margin: auto;
  justify-content: center;
}

body {
  background-color: beige;
}

.topnav {
  margin: 8px;
  background-color: darkolivegreen;
  overflow: hidden;
}

.topnav a {
  float: left;
  display: block;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
}

.topnav a:hover {
  background-color: gold;
  color: tomato;
}

.topnav a.active {
  background-color: tomato;
  color: white;
}

.topnav .icon {
  display: none;
}



h1 {
  color: tomato;
  background-color: white;
  font-family: Courier, monospace;
  padding: 30px;
  margin: 20px;
  border: solid gold 5px;
  border-radius: 30px;
  text-align: center;
}

h2 {
  text-align: center;
  color: tomato;
}

h4 {
  padding: 15px 15px 0px 15px;
  box-sizing: border-box;
  margin: 5px 0px 5px 5px;

}

.vertical-menu {
  align-self: center;
  width: 350px;
  height: 150px;
  overflow-y: auto;
}

.vertical-menu a {
  background-color: white;
  color: tomato;
  display: block;
  padding: 12px;
  text-decoration: none;
}

.vertical-menu a:hover {
  background-color: gold
}

.vertical-menu a.active {
  background-color: tomato;
  color: tomato;
  border: black 10px;
  background-color: white;
  padding: 5px;
  margin: 0px;
  border: gold solid 5px;
  border-radius: 5px;
}

article {
  color: tomato;
  border: black 5px;
  background-color: white;
  padding: 20px;
  margin: 50px;
  border: gold solid 5px;
  border-radius: 10px;
  text-align: center;

}

#stycke3 {
  color: tomato;
  border: gold 10px;
  background-color: white;
  padding: 5px;
  margin: 5px;
  border: gold solid 5px;
  border-radius: 10px;
  text-align: center;
}

.shawarmacamo {
  max-width: 250;
  display: flex;
  align-content: center;
}

.flexbox1 {
  list-style: none;
  display: flex;
  flex-direction: row;
  justify-content: center;
  font-size: large;
  background-color: whitesmoke;
  align-content: space-between;
  width: 100px;
}

img {
  max-height: 720px;
  width: 100%;
}

* {
  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;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: tomato;
  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(0, 0, 0, 0.8);
}

/* Caption text */
.text {
  color: gold;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
  color: gold;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* 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
  }
}

@keyframes fade {
  from {
    opacity: .4
  }

  to {
    opacity: 1
  }
}




@media screen and (min-width: 600px) {

  main {
    max-width: 700px;
    margin: auto;
    justify-content: center;
  }

  nav>ul {
    flex-direction: row;
  }

  h1 {
    color: tomato;
    background-color: whitesmoke;
    font-family: Courier, monospace;
    padding: 30px;
    margin: 75px;
    border: solid gold 5px;
    border-radius: 30px;
    text-align: center;
  }
}

@media screen and (min-width: 900px) {

  main {
    max-width: 700px;
    margin: auto;
    justify-content: center;
  }

  body {
    max-width: 750px;
    margin: auto;
  }

  h1 {
    color: tomato;
    background-color: whitesmoke;
    font-family: Courier, monospace;
    padding: 30px;
    margin: 75px;
    border: solid gold 5px;
    border-radius: 30px;
    text-align: center;
  }

  nav>ul {
    flex-direction: row;
  }

}