:root {
  --blueDark: #262b44;
  --blue: #124e89;
  --blueLight: #0095e9;
  --blueLighter: #2ce8f5;
  --blueTitle: #a0b8cf;
  --green: #63c74d;
  --greenDark: #3e8948;
  --cream: #ead4aa;
  --white: #FAF9F6;
  --warmWhite: #f9f9f9;
  --orange: #f77622;
}

body {
  padding-top: 60px;
  background-color: var(--blue);
  font-family: "Courier New", Courier, monospace;
  font-weight: normal;
  color: var(--white);
  line-height: 1.5;
  font-size: 1em;
}

h2,
h3,
h4 {
  line-height: 1.25;
  letter-spacing: 0.05em;
  font-weight: 600;
}

h3 {
  font-family: "Courier New", Courier, monospace;
  font-weight: 900;
  font-size: 1.4em;
  line-height: 1.25;
}

.page-title-container {
  display: flex;
  justify-content: center;
  width: 100%;
}

.page-title {
  padding-top: 1.5em;
  letter-spacing: 3px;
  font-size: 1.8em;
  font-family: "Courier New", Courier, monospace;
  max-width: 10em;
  text-align: center;
}

.post_title {
  padding-right: 0.5em;
}

a {
  text-decoration: none;
  /* Remove underline */
  color: inherit;
  transition: color 0.3s ease;
}

a:focus,
a:active {
  outline: none;
}

a:hover {
  color: var(--cream);
}

.lazy-image {
  opacity: 0;
  transition: opacity 0.5s ease-out;
}

.lazy-image-loaded {
  opacity: 1;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Initially hide the element */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

/* Add a class when in view to trigger the animation */
.animate-on-scroll.in-view {
  opacity: 1;
  transform: translateY(0);
  animation: fadeIn 0.5s ease-out;
}