body {
  background-color: rgb(196,221,225);
}

#banner {
  background-color: rgb(196,221,225);
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 575px;
  align-items: center;
  justify-items: center;
  justify-content: space-around;
  grid-template-columns: 1fr;
  grid-template-rows: 0px;
}

#logo {
  height: 100%;
  width: 100%;
  max-width: 575px;
  max-height: 575px;
}

#logo-position {
  display: flex;
  background-color: rgb(196,221,225);
  width: 100%;
  aspect-ratio: 1 / 1;
}

#logo-position img {
  width: 100%;
  margin: auto;
}

#logo-container {
  background-color: rgb(196,221,225);
  display: flex;
  width: 40%;
  max-height: 575px;
  aspect-ratio: 1 / 1;
}

#arrow-container {
  display: flex;
  flex-direction: column;
  background-color: rgb(196,221,225);
  height: 20px;
  width: 100%;
  align-items: center;
  justify-items: center;
  grid-template-columns: 1fr;
}

#arrow-down {
  display: flex;
  background-color: rgb(196,221,225);
  height: 0;
  width: 0;
  border-color: red;
  border-left: 35px solid transparent;
  border-right: 35px solid transparent;
  border-top: 35px solid;
  animation: border-top-color-change 750ms infinite;
  animation-direction: alternate;
}

@keyframes border-top-color-change {
  0% {
    color: rgb(160,195,200);
  }

  100% {
    color: rgb(140,175,180);
  }
}

#content {
  position: relative;
  width: 45%;
  margin-left: 20%;
  top: 60px;
  font-family: "calibri", "comic sans ms", "arial black";
  font-weight: strong;
  font-size: 18px;
  color: rgb(36,36,36);
  min-width: 350px;
}

#mobile-divider {
  width: 100%;
  height: 50px;
}

.small-spacer {
  height: 10px;
}

.social {
  position: relative;
  display: block;
  width: 500px;
  height: 150px;
  z-index: 10;
  left: 20%;
  top: 45px;
}

#fb {
  position: absolute;
  width: 100px;
  height: 100px;
  left: 15px;
  top: 15px;
}

#yt {
  position: relative;
  display: inline-block;
  width: 100px;
  height: 100px;
  top: 15px;
  left: 135px;
}

#inst {
  position: relative;
  display: inline-block;
  width: 100px;
  height: 100px;
  top: 15px;
  left: 150px;
}

.social-logos {
  height: 100%;
  width: 100%;
}

#pic-2 img {
  margin-top: auto;
  margin-bottom: auto;
  height: 60%;
  width: 100%;
}

#video-title {
  display: flex;
  justify-content: center;
}

#video-title h3 {
  font-size: 20px;
  font-family: "calibri", "comic sans ms", "arial black";
  color: rgb(36,36,36);
}

#index-video-container {
  background-color: rgb(196,221,225);
  display: flex;
  height: 500px;
  width: 90%;
  margin: auto;
  justify-content: center;
}

#index-video-container div {
  height: 100%;
  width: 70%;
}

#index-video-container div iframe {
  height: 100%;
  width: 100%;
}

#image-title {
  display: flex;
  height: 50px;
  justify-content: center;
}

#image-title h3 {
  font-size: 20px;
  font-family: "calibri", "comic sans ms", "arial black";
  color: rgb(36,36,36);
}

#index-image-container {
  background-color: black;
  display: flex;
  margin: auto;
  width: 65%;
  height: auto;
}

#index-image-container img {
  height: 100%;
  width: 100%;
}

#mobile-contact {
  position: relative;
  width: 45%;
  margin-left: 18%;
  top: 0px;
  font-family: "calibri", "comic sans ms", "arial black";
  font-weight: strong;
  color: rgb(36,36,36);
  min-height: 250px;
}

#mobile-contact strong {
  font-size: 18px;
}

#mobile-contact h1 {
  font-size: 24px;
}

#last-updated {
  display: flex;
  font-family: "calibri", "comic sans ms", "arial black";
  color: rgb(75,75,75);
  font-size: 15px;
  right: 0;
  justify-content: right;
}

@media only screen and (min-width: 2000px) {

  #banner {
    height: 1175px;
  }

  #logo-container {
    max-height: 3000px;
  }

  #logo {
    max-width: 800px;
    max-height: 800px;
  }

}

@media only screen and (max-width: 480px) {

  #logo-container {
    width: 100%;
  }

  #divider {
    width: 0;
    height: 40px;
  }

  #content {
    background-color: rgb(196,221,225);
    display: flex;
    flex-direction: column;
    width: 90%;
    min-width: 300px;
    align-self: center;
    margin-left: 10px;
    margin-right: 10px;
    top: 45px;
  }

  #content strong {
    font-family: "calibri", "comic sans ms", "arial black";
    font-size: 16px;
  }

  .social {
    top: 80px;
    display: flex;
    width: 60%;
    height: 225px;
    z-index: 10;
    margin-left: 10px;
    justify-content: space-between;
  }

  #fb {
    position: static;
    display: flex;
    width: 75px;
    min-width: 75px;
    height: 75px;
    top: 0;
    left: 0;
  }

  #inst {
    position: static;
    display: flex;
    width: 75px;
    min-width: 75px;
    height: 75px;
    top: 0;
    left: 0;
  }

  #yt {
    position: static;
    display: flex;
    width: 75px;
    min-width: 75px;
    height: 75px;
    top: 0;
    left: 0;
  }

  #video-title {
    height: 50px;
  }

  #video-title h3 {
    font-size: 16px;
