* {
  box-sizing: border-box;
}

body {
  font-family: Verdana, sans-serif;
  font-size: 3vw;
  background-color: black;
}

.header img {
  width: 100%;
  margin-bottom:2%;
}

.greeting {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-bottom:2%;
  font-size: 3vw;
}

.welcome {
  color: white;
  width: 40%;
  vertical-align:top;
}

.sites-header {
  color: white;
  background-color: blue;
  font-size: 7vw;
  text-align: center;
  padding-top: 2%;
  padding-bottom: 2%;
  margin: 3%
}

.sites {

}

.sites img {
  width: 45%;
  border-radius: 20%;
  aspect-ratio: 4/1;
  margin-top: 2%;
  margin-bottom: 2%;
  margin-left: 2%;
}

.sites a {
  color: black;
}

.page-footer {
  border-top-width: 1px;
  border-top-style: dotted;
  border-color: blue;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-evenly;
  margin: 2%;
  margin-top: 4%;
}

.page-footer-item a{
  color: gray;
}

/* Carousel Block */

/* Slideshow container */
.slideshow-container {
  width:50%;
  position: relative;
  margin: auto;
  margin-bottom: 2%;
}

.mySlides {
  width: 100%;
  display: none;
  vertical-align: middle;
}

.mySlides img{
  width: 100%;
  height: calc(100vw * 1/2);
  object-fit: cover;
  border-radius: 5%;
}

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

@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

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

/* Privacy Policy Block */
.headerImage {
  text-align: center;
  margin: 2%;
}

.headerImage img{
  width: 50%;
  text-align: center;
}

.sectionHeader {
  color: white;
  font-size: 5vw;
  text-align: center;
  margin: 2%;
}

.sectionText {
  color: white;
  font-size: 2vw;
  margin: 2%;
}

.textSectionHeader {
  color: white;
  font-size: 3vw;
  text-align: left;
  margin: 2%;
}

}
