.topnav {
  background-color: 1100ee;
  overflow: hidden;
}

.topnav a {
  float: left;
  display: block;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
  width: 8.5%;
}

.topnav a:hover {
  background-color: #ddd;
  color: black;
}

.topnav a.active {
  background-color: #f21368;
  color: white;
}

.topnav .icon {
  display: none;
}

body {
  background-color: #110e0e;
  max-width: 900px;
  width: 85%;
  margin: 0 auto;
  color: white;
  font-family: "Montserrat", sans-serif;
}

h1 {
  font-size: 38pt;
  text-align: center;
}

h2 {
  text-align: center;
  font-size: 24pt;
}

h1,
h2,
h3,
h4 {
  font-family: "Caveat", cursive;
  font-weight: 400;
  margin: 0;
}

h3,
h4 {
  color: #f21368;
  margin-bottom: 0;
}

/* h3 {
  float: left;
  clear: left;
  margin-top: 0px;
  margin-left: 65px;
  font-size: 20pt;
} */

h4 {
  font-size: 18pt;
}

/* .info {
  margin-left: 225px;
  max-width: 600px;
  line-height: 1.5;
} */

a {
  color: #f21368;
  font-weight: bold;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

ul {
  padding-left: 15px;
}

.banner {
  padding: 10px;
  width: 850px;
  height: 200px;
  background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
    url("../images/pomseeds.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  margin-bottom: -50px;
  margin: auto;
}

footer {
  text-align: center;
  padding-top: 10px;
  padding-bottom: 10px;
  background-color: #18020a;
}

.content-wrap {
  max-width: 850px;
  width: 85%;
  margin: 0 auto;
  padding: 40px 0;
}

.content-wrap h2 {
  max-width: 850px;
  width: 85%;
  margin: 0 auto;
  padding: 0;
  margin-bottom: -40px;
}

.social-links {
  display: flex;
  justify-content: space-evenly;
  list-style: none;
  padding: 10px;
}

/* Slideshow container */
.slideshow-container {
  max-width: 750px;
  position: relative;
  margin: auto;
}

/* 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;
}

/* The dots/bullets/indicators */
.dot {
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active {
  background-color: #717171;
}

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

@-webkit-keyframes fade {
  from {
    opacity: 0.4;
  }
  to {
    opacity: 1;
  }
}

@keyframes fade {
  from {
    opacity: 0.4;
  }
  to {
    opacity: 1;
  }
}

/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {
  .text {
    font-size: 11px;
  }
}

/* When the screen is less than 600 pixels wide, hide all links, except for the first one ("Home"). Show the link that contains should open and close the topnav (.icon) */
@media screen and (max-width: 600px) {
  .topnav a:not(:first-child) {
    display: none;
  }
  .topnav a.icon {
    float: right;
    display: block;
  }
}

/* The "responsive" class is added to the topnav with JavaScript when the user clicks on the icon. This class makes the topnav look good on small screens (display the links vertically instead of horizontally) */
@media screen and (max-width: 600px) {
  .topnav.responsive {
    position: relative;
  }
  .topnav.responsive a.icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  .topnav.responsive a {
    float: none;
    display: block;
    text-align: left;
  }
}
