@charset "UTF-8";
/* CSS Document */
@font-face {
    font-family: Greatly-Clean;
    src: url(fonts/Greatly-Clean.otf);
    /* Ensure text renders immediately using a fallback */
    font-display: swap;
}
/* Base structure */
.cover-container {
  max-width: 54em;
}
h2 {
  font-family: 'Greatly-Clean', serif;
  font-size: clamp(2rem, 2.5vw + 3rem, 5rem);
  line-height: 1;
  color: #495d6b;
}
body {
  border: 1rem solid white;
}

.text-bg-light {
  background-color: #d6dee6!important;
}
/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
  html {
    height: 100%;
  }
  body {
    border: 0;
  }
  .text-bg-light {
    border: 2rem solid #ffffff;
  }
  .lead {
    font-size: 1.5rem;
  }
}