*, *::before, *::after {
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Intro Rust", sans-serif;
}

h1 span,
h2 span,
h3 span,
h4 span,
h5 span,
h6 span {
  display: inline-block;
}

h1 {
  font-size: 3em;
}

a {
  color: var(--primary-color);
  text-decoration: none;
}

figure {
  display: flex;
  flex-flow: column nowrap;
  align-items: stretch;
  justify-content: space-between;
  background-color: rgba(0,0,0,0.025);
  backdrop-filter: blur(20px);
  border-radius: 5px;
}

figure blockquote {
  padding: 0.5em;
}

figure figcaption {
  font-size: 1.25em;
  text-align: right;
  margin-top: 1em;
  padding: 0.5em;
}

blockquote::before {
  content: '“';
}

blockquote::after {
  content: '”';
}

.container {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

.flex-center {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: center;
}

.flex-center.even > * {
  flex-basis: 100%;
}

.flex-column-center {
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  justify-content: center;
}

.comfy-line-spacing {
  line-height: 1.25em;
}

.spacious-line-spacing {
  line-height: 1.5em;
}

.white {
  color: white;
  text-shadow: 2px 2px 2px rgba(0,0,0,0.25);
}

.huger {
  font-size: 4em;
}

.huge {
  font-size: 3em;
}

.larger {
  font-size: 2.5em;
}

.large {
  font-size: 2em;
}

.big {
  font-size: 1.5em;
}

.medium {
  font-size: 1.25em;
}

.normal {
  font-size: 1em;
}

.small {
  font-size: 0.75em;
}

.smaller {
  font-size: 0.5em;
}

.left {
  text-align: left;
}

.center {
  text-align: center;
}

.right {
  text-align: right;
}

.background {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.background-cover {
  background-size: cover;
}

.background-contain {
  background-size: contain;
}

.background-left-bottom {
  background-position: left bottom;
}

.background-left-center {
  background-position: left center;
}

.background-left-top {
  background-position: left top;
}

.background-center-bottom {
  background-position: center bottom;
}

.background-center-center {
  background-position: center center;
}

.background-center-top {
  background-position: center top;
}

.background-right-bottom {
  background-position: right bottom;
}

.background-right-center {
  background-position: right center;
}

.background-right-top {
  background-position: right top;
}

.mobile-show {
  display: none;
}

.flex-responsive-columns {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: center;
  gap: 1em;
}

.flex-responsive-columns.start {
  align-items: flex-start;
}

.flex-responsive-columns.stretch {
  align-items: stretch;
}

.flex-responsive-columns > * {
  flex-basis: 100%;
}

@media (max-width: 768px) {
  body {
    font-size: 12px;
  }

  .container {
    padding: 10px;
  }

  .container.white {
    background-color: rgba(0,0,0,0.2);
    backdrop-filter: blur(2px);
  }

  .mobile-hide {
    display: none;
  }

  .flex-responsive-columns {
    flex-flow: column nowrap;
  }

  .mobile-huger {
    font-size: 4em;
  }

  .mobile-huge {
    font-size: 3em;
  }

  .mobile-larger {
    font-size: 2.5em;
  }

  .mobile-large {
    font-size: 2em;
  }

  .mobile-big {
    font-size: 1.5em;
  }

  .mobile-medium {
    font-size: 1.25em;
  }

  .mobile-normal {
    font-size: 1em;
  }

  .mobile-small {
    font-size: 0.75em;
  }

  .mobile-smaller {
    font-size: 0.5em;
  }

  .mobile-left {
    text-align: left;
  }

  .mobile-center {
    text-align: center;
  }

  .mobile-right {
    text-align: right;
  }
}
