* {
  font-family: 'Times New Roman', Times, serif;
  text-align: center;
}

/*HOME*/

.home-site,
.about-site,
.apothecary-site,
.blog-site,
.contact-site {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  width: auto;
  margin: 0 auto;
}

.home-site {
  background-image: url(/images/blackswanbody.jpg);
  background-attachment: fixed;
  background-size: cover;
  background-repeat: no-repeat;
  color: white;
  padding: 20px;
}

.header {
  display: flex;
  justify-content: space-evenly;
}

a {
  color: white;
  text-decoration: none;
}

.index-main {
  font-size: 30px;
  background-size: 100%;
  height: 90px;
  background-color: transparent;
  color: white;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex: 1;
}

#subtitle {
  font-size: 22px;
}

footer {
  display: flex;
  flex-direction: column;
}

/*ABOUT*/

.about-site {
  background-image: url(/images/blackswanselfie.jpg);
  background-attachment: fixed;
  background-size: cover;
  background-repeat: no-repeat;
  color: white;
  padding: 20px;
}

/*APOTHECARY*/

.apothecary-site {
  background-image: url(/images/oiljars.JPG);
  background-attachment: fixed;
  background-size: cover;
  background-repeat: no-repeat;
  color: white;
  padding: 20px;
}

/*WRITINGS*/

.blog-site {
  background-color: black;
  color: white;
  padding: 20px;
}

.blog-main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex: 1;
}

.blog-pics {
  width: 300px;
  height: 400px;
}

/*CONTACT*/

.contact-site {
  background-image: url(/images/herbshand.JPG);
  background-attachment: fixed;
  background-size: cover;
  background-repeat: no-repeat;
  color: white;
  padding: 20px;
}