@font-face {
  font-family: "Hind Madurai";
  src: url(../resources/fonts/Hind_Madurai/HindMadurai-Regular.ttf);
}
@font-face {
  font-family: "Hind Madurai";
  src: url(../resources/fonts/Hind_Madurai/HindMadurai-Bold.ttf);
  font-weight: bold;
}
@font-face {
  font-family: "Roboto";
  src: url(../resources/fonts/Roboto/Roboto-Regular.ttf);
}
@font-face {
  font-family: "Roboto";
  src: url(../resources/fonts/Roboto/Roboto-Bold.ttf);
  font-weight: bold;
}
@font-face {
  font-family: "Martel";
  src: url(../resources/fonts/Martel/Martel-Regular.ttf);
}
/* Media Queries */
html {
  --secondary-text-color: #408bbd;
  --link-color: #3e4e53;
  --main-background-color: #fff;
  --main-text-color: #408bbd;
  --navbar-height: 50px;
  --border-color-faded: rgba(64, 139, 189, 0.4);
  --footnote-link-color: #DA4167;
  --title-font: "Roboto";
  --subtitle-font: "Martel";
  --body-font: "Hind Madurai";
}

@media (prefers-color-scheme: dark) {
  html {
    --secondary-text-color: #9CD3D3;
    --link-color: #cac3bc;
    --main-background-color: #222;
    --main-text-color: #ddd;
    --border-color-faded: rgba(156, 211, 211, 0.4);
    --footnote-link-color: #D585A3;
  }
}
@media only screen and (min-width: 668px) and (max-width: 1024px), screen and (orientation:landscape) {
  html {
    --padding-left: 20%;
    --padding-right: 20%;
  }
}
@media only screen and (min-width: 668px) and (max-width: 1024px), screen and (orientation:portrait) {
  html {
    --padding-left: 15%;
    --padding-right: 15%;
  }
}
@media only screen and (max-width: 667px) {
  html {
    --padding-left: 5%;
    --padding-right: 5%;
  }
}
@media only screen and (min-width: 1025px) {
  html {
    --padding-left: 25%;
    --padding-right: 25%;
  }
}
html {
  display: flex;
  flex-direction: column;
  height: 100vh;
  background-color: var(--main-background-color);
}

body {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  color: var(--main-text-color);
  margin: 0;
  font-family: var(--body-font);
}

a {
  color: var(--link-color);
}

.underline {
  text-decoration: underline;
}

article {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.social {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
}

#center {
  padding-left: var(--padding-left);
  padding-right: var(--padding-right);
}
@media only screen and (min-width: 1025px) {
  #center #body {
    margin-bottom: 5%;
  }
}

#essay #header h1 {
  font-weight: 600;
  font-family: var(--title-font);
  font-size: 2em;
  margin-bottom: 5px;
}
#essay #header #date {
  font-style: italic;
  margin: 0;
}
#essay #header #quote {
  font-style: italic;
}
#essay #quote {
  text-align: center;
}
@media only screen and (min-width: 1025px), only screen and (min-width: 668px) and (max-width: 1024px) {
  #essay #quote {
    padding-left: 20%;
    padding-right: 20%;
    margin: 5% 0% 5% 0%;
  }
}
#essay em, #essay strong {
  color: var(--secondary-text-color);
}
#essay .footnote, #essay .reversefootnote {
  color: var(--footnote-link-color);
}
#essay .footnotes {
  border-top: solid 1px;
  margin-top: 15px;
}

#nav {
  display: flex;
  flex-direction: row;
  height: var(--navbar-height);
  width: 100%;
  background-color: var(--main-background-color);
}
#nav > div {
  display: flex;
  align-items: center;
}
#nav > div a {
  padding: 0;
  background: transparent !important;
  text-decoration: none;
}
#nav > div a:hover, #nav > div a.active {
  text-decoration: underline;
  cursor: pointer;
}
@media only screen and (max-width: 667px) {
  #nav {
    padding-left: var(--padding-left);
    padding-right: var(--pading-right);
  }
}
@media only screen and (min-width: 668px) and (max-width: 1024px), only screen and (min-width: 1025px) {
  #nav #home {
    width: var(--padding-left);
  }
  #nav #home a {
    margin-left: 5%;
  }
}
#nav #sections {
  display: flex;
  flex-direction: row;
  flex-grow: 1;
  justify-content: space-evenly;
}
@media only screen and (min-width: 668px) and (max-width: 1024px), only screen and (min-width: 1025px) {
  #nav #sections {
    justify-content: space-between;
    padding-right: 15%;
  }
}

social {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  height: 50px;
  align-items: center;
}
social img {
  height: 25px;
  width: 25px;
}
@media (prefers-color-scheme: dark) {
  social img {
    filter: invert(100%) sepia(0%) saturate(7500%) hue-rotate(53deg) brightness(98%) contrast(113%);
  }
}

#post-list {
  display: flex;
  flex-direction: column;
}

.post-list-item {
  border-top: 1px solid var(--border-color-faded);
  margin-bottom: 15px;
  padding: 0 5px 0 5px;
}
.post-list-item a {
  text-decoration: none;
  color: var(--main-text-color);
}

/*# sourceMappingURL=main.css.map */