* {
  justify-content: center;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', Arial, sans-serif;
  background-color: #f4f4f4;
}

.container {
  width: 80%;
  margin: 0 auto;
}

header {
  background-color: #2c3e50;
  color: #fff;
  padding: 20px 0;
  text-align: center;
}

header h1 {
  margin: 0;
  font-size: 36px;
  text-transform: uppercase;
}

nav ul {
  list-style-type: none;
  text-align: center;
  margin-top: 20px;
}

nav ul li {
  display: inline-block;
  margin-right: 20px;
}

nav ul li a {
  text-decoration: none;
  color: #fff;
  font-size: 18px;
  transition: color 0.3s;
}

nav ul li a:hover {
  color: #ffd700;
}

.dropdown-menu {
  display: none;
  position: absolute;
  background-color: #2c3e50;
  padding: 10px;
  z-index: 1;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu li {
  margin: 10px 0;
}

.dropdown-menu li a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.dropdown-content a:hover {
  background-color: #f1f1f1;
}

.dropdown:hover .dropdown-content {
  display: block;
}

* {
  box-sizing: border-box
}

.slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
}

.mySlides {
  display: none;
}

.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

.prev:hover, .next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

.text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}


.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;
}

.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {
    opacity: .4
  }

  to {
    opacity: 1
  }
}

.lesson {
  margin: 0 auto;
  max-width: 1100px;
  padding: 20px;
}

.mySlides img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  height: auto;

}

p {
  margin: 0 auto;
  max-width: 1100px;
  padding: 20px;
  text-align: center;
}

h2 {
  text-align: center;
  padding-top: 25px;
  padding-bottom: 10px;
}

footer {
  font-family: 'Lato', sans-serif;
  text-align: center;
}

#dot {
  text-align: center;
}

#image {
  display: block;
  margin: 0 auto;
}

.questions {
  text-align: center;
}

.questions p {
  margin: 10px 0;

}

.divider {
  border-top: 5px solid black;
  margin: 20px 0;
}

.resourceimage {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  height: 200px;
  width: 200px;

}