html {
  scroll-behavior: smooth;
}

body {
  background: #fffafa;
  margin: 0;
  padding: 0;
}

h1 {
  margin: 0;
  font-family: "Pacifico", cursive;
  font-size: 5.4vw;
  color: #223a3e;
}
h2 {
  margin: 0;
  font-family: "Pacifico", cursive;
  text-align: center;
  color: #223a3e;
  font-size: 4.5vw;
}

h3 {
  margin: 0;
  font-family: "Nunito", sans-serif;
  letter-spacing: 3px;
  font-size: 4vw;
  color: #476166;
}

h4 {
  margin: 0;
  font-family: "Nunito", sans-serif;
  letter-spacing: 3px;
  font-size: 1.5vw;
  color: #476166;
}

p {
  text-align: justify;
  font-family: "Nunito", sans-serif;
  color: #232c2c;
  margin: 15px 0px 0px 0px;
}

span {
  color: white;
}

.indented {
  font-style: italic;
  width: 80%;
  letter-spacing: 1px;
  margin: 10px auto;
}

.site-container {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* HEADER */
.site-header {
  border: solid 5px #c8c7cf;
  border-radius: 3px;
}
.img-container {
  background-image: url(images/hero-image-small.jpg);
  background-position: center;
  background-size: cover;
  padding: 50px 0;
  position: relative;
  z-index: -1;
}

.inner-container {
  text-align: center;
  position: relative;
  z-index: 10;
  background-color: #fff;
  border: solid 3px #ecd0cb;
  border-radius: 3px;
  margin: 5px;
  padding: 5px 0;
}

/* NAVBAR */

.nav-bar {
  display: flex;
  flex-direction: row;
  margin: auto;
  background-color: #fff;
}

.nav-box {
  margin: 0 2px 2px 2px;
  border-top: solid 1px #ecd0cb;
  border-left: solid 1px #ecd0cb;
  border-right: solid 3px #ecd0cb;
  border-bottom: solid 3px #ecd0cb;

  border-radius: 3px;
}

/* MAIN CONTENT */

.site-content {
  flex: 1;
}

ul {
  width: 80%;
  margin: auto;
  list-style: none;
}

li {
  font-family: "Nunito", sans-serif;
  font-size: 18px;
  margin: 15px 0px 0px 0px;
}

ul li::before {
  content: "🖇";
  display: inline-block;
  font-size: 15px;
}

.hippo-list::before {
  content: "🦛";
  font-size: 22px;
  transform: scaleX(-1);
}

.img-site-content {
  width: 100%;
  margin: auto;
  margin-top: 16px;
  border-radius: 3px;
  display: flex;
}

.date {
  margin: 0 auto -15px auto;
  font-size: 12px;
}

.date-color {
  padding: 1px 6px;
  border-radius: 3px;
  background-color: #476166;
}

.image-text {
  text-align: center;
  margin: 5px 0 16px 0;
  font-size: 10px;
  font-weight: lighter;
}

a,
a:visited,
a:hover,
a:active {
  text-decoration: none;
  font-weight: bolder;
  color: #232c2c;
}
.text-block {
  background: white;
  margin: 20px auto;
  padding: 10px;
  border: solid 3px #ecd0cb;
  border-radius: 3px;
  display: flex;
  flex-direction: column;
}

.three-dots {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-top: 15px;
}

.dots {
  width: 6px;
  height: 6px;
  margin: 0 5px;
  border-radius: 50%;
  background-color: #476166;
}

.dots:nth-child(2) {
  background-color: #ecd0cb;
  width: 8px;
  height: 8px;
}

button {
  font-family: "Pacifico", cursive;
  background: #fffafa;
  color: #223a3e;
  border-radius: 3px;
  border: 1px solid #ecd0cb;
  cursor: pointer;
  box-shadow: 1px 1px 1px 0 #ecd0cb;
  transition-duration: 0.3s;
  width: fit-content;
  margin: 10px auto 0 auto;
  font-size: 20px;
}

button:focus {
  outline: 0;
}

button:hover {
  box-shadow: 0 0 1px 0 #ecd0cb;
}
button:active {
  box-shadow: inset 1px 1px 1px 0 #ecd0cb;
  outline: none;
}

/* FOOTER */

.container-footer {
  margin: 0;
  padding: 10px 0;
  background-position: center;
  background-size: cover;
  position: relative;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 38px;
  z-index: -1;
  background-image: url(images/footer-image-small.jpg);
  display: flex;
}

.opacity-layer {
  background: #ecd0cb;
  opacity: 100%;
  width: 100%;
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-p {
  text-align: center;
  position: relative;
  z-index: 5;
  margin: 0;
  font-size: 10px;
}

#more {
  display: none;
}

@media (min-width: 668px) {
  .site-content {
    margin: 0 20px;
  }

  ul {
    width: 60%;
  }

  .img-container {
    background-image: url(images/hero-image-medium.jpg);
  }

  .container-footer {
    background-image: url(images/footer-image-medium.jpg);
  }

  p {
    font-size: 18px;
  }

  .date {
    font-size: 14px;
  }
  .image-text {
    font-size: 14px;
  }
  .indented {
    width: 60%;
  }
}

@media (min-width: 1025px) {
  .site-content {
    flex: 1;
    margin: 0 100px;
  }

  .text-block {
    width: 70%;
    margin: 50px auto;
    padding: 20px 40px;
  }

  .img-site-content {
    width: 98%;
    box-shadow: 16px 26px 0 0 #476166;
  }
  a,
  a:visited,
  a:hover,
  a:active {
    color: white;
  }

  .image-text {
    color: white;
  }

  .main-image {
    float: left;
  }

  .footer-p {
    font-size: 15px;
  }

  .footer-a,
  .footer-a:visited,
  .footer-a:active {
    color: black;
  }

  .date {
    margin: 15px 0px -10px;
  }

  .indented {
    width: 50%;
  }
}
