/*General Styling*/
body, html {
  margin: 0;
  padding: 0;
  background-color: #393a41;
}
h2 {
  text-align: center;
}

/*Container Styling*/
.head-container {
  background-image: url('images/Cave\ \(1000\ x\ 500\ px\).svg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: grid;
  grid-template-columns: auto;
  background-color: #2f3037;
  min-height: 100vh;
}
.container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background-color: #26262c;
  min-height: 70vh;
}
.plato-container {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  color: white;
  background-color: #131316;
  min-height: 80vh;
}
.goals-container {
  display: grid;
  grid-template-columns: 2.1fr 1fr;
  color: white;
  background-color: #1c1c21;
  min-height: 80vh;
}
.header-container {
  display: grid;
  grid-template-columns: auto;
  background-color: white;
  min-height: 6vh;
}
.staff-container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  background-color: #2f3037;
  min-height: 50vh;
}
.social-header-container {
  display: grid;
  grid-template-columns: 1fr;
  background-color: white;
  padding: 10px;
  min-height: 10vh;
}
.socials-container {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr 1fr 0.1fr;
  background-color: white;
  min-height: 30vh;
}
/*Div style in container*/
.head-container > div {
  text-align: center;
  align-content: center;
  font-size: 3.5vh;
}
.container > div {
  border: 3px solid white;
  color: white;
  text-align: center;
  padding: 50px;
  font-size: 3vh;
}
.plato-container > div {
  border: 3px solid white;
  text-align: center;
  align-items: center;
  padding: 50px;
  margin-top: 0.8px;
  font-size: 3vh;
}
.goals-container > div {
  border: 3px solid white;
  text-align: center;
  align-items: center;
  padding: 50px;
  font-size: 3vh;
}
.header-container > div {
  text-align: center;
}
.staff-container > div {
  border: 3px solid white;
  color: white;
  text-align: center;
  padding: 50px;
  font-size: 3vh;
}
.socials-container > div {
  text-align: center;
  align-items: center;
  font-size: 3vh;
}

* {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: red;
  font-weight: bold;
  font-size: 5vh;
  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: #d31818;
  font-size: 3vh;
  font-weight: bold;
  padding: 8px 12px;
  position: absolute;
  bottom: 3vh;
  width: 100%;
  text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #d31818;
  font-size: 3vh;
  font-weight: bold;
  padding: 8px 12px;
  position: flex;
  top: 0;
}

/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: white;
  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}
}
/*Button*/
.excerpt {
  margin-top: 7vh;
  padding: 20px;
  border-radius: 12px;
  border-style: solid;
  border-color: white;
  align-items: center;
  background-color: #131316;
  color: white;
  font-size: medium;
}

.instr {
  text-align: center;
  padding: 10px;
  font-size: 2.5vh;
  color: white;
}
/*Photo Section*/
.headshot {
  border-radius: 50%;
  height: 150px;
  width: 150px;
  align-items: center;
  margin-bottom: 2vh;
}
.p2 {
  margin-top: 100px;
}
/*Dark Stylisms*/
.drama-fade {
  animation-name: drama-fade;
  animation-duration: 3.5s;
}
@keyframes drama-fade{
  from {opacity: 0}
  to {opacity: 1}
}
/*Social Media*/
.insta {
  margin-top: 2vh;
  align-self: center;
  border: none;
  background-color: white;
  color: black;
  font-size: medium;
}