/*
Fundamental Stylings
*/
.sr-only {
  /* https://snook.ca/archives/html_and_css/hiding-content-for-accessibility */
  /* stylelint-disable-next-line declaration-no-important */
  position: absolute !important;
  overflow: hidden;
  width: 1px;
  height: 1px;
  padding: 0;
  white-space: nowrap;
  clip: rect(0, 0, 0, 0);
  -webkit-clip-path: inset(50%);
          clip-path: inset(50%);
  border: 0;
}

/* stylelint-disable color-no-hex */ /* stylelint-disable scss/dollar-variable-colon-space-after */
@font-face {
  font-family: "Roboto Flex";
  font-weight: 100 1000;
  font-stretch: 25% 151%;
  src: url("/snippet/fonts/RobotoFlex.woff2") format("woff2-variations");
}
body, p {
  font-family: "Roboto Flex", -apple-system, blinkmacsystemfont, "Segoe UI", oxygen-sans, ubuntu, cantarell, "Helvetica Neue", sans-serif;
  font-weight: 400;
  font-style: normal;
}

strong,
b,
a,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Roboto Flex", -apple-system, blinkmacsystemfont, "Segoe UI", oxygen-sans, ubuntu, cantarell, "Helvetica Neue", sans-serif;
  font-weight: 700;
  font-style: normal;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #2e2450;
}

h1 {
  font-size: 2.85rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

p {
  color: #2e2450;
  line-height: 1.5;
  font-size: 1.25rem;
}

a {
  color: #e95b9d;
  text-decoration-color: #e95b9d;
  text-decoration-thickness: 0.25rem;
  text-underline-offset: 0.25rem;
  -webkit-transition: all 0.1s ease-out;
  transition: all 0.1s ease-out;
}

a:hover {
  text-decoration-color: #fc8dba;
}

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

body {
  color: #2e2450;
  background-color: #faf8f2;
  background: #a7ffc9;
  background: linear-gradient(135deg, hsl(89deg, 47%, 68%) 0%, hsl(45deg, 47%, 85%) 17%, hsl(248deg, 96%, 89%) 43%, hsl(180deg, 66%, 91%) 78%, hsl(328deg, 100%, 87%) 100%);
}

.brand-logo {
  max-width: 250px;
}

/* 560px */
/*
Application specific code
*/
footer {
  background-color: #d6b0ff;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 3rem 0;
  margin-top: 8rem;
}
footer a {
  text-decoration: none;
  font-size: 1.5rem;
}
footer img {
  position: absolute;
  max-width: 300px;
  bottom: 5rem;
}

.footer-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 1.5rem;
}

main {
  min-height: 100vh;
  padding-top: 3.875rem;
  padding-bottom: 3.875rem;
}

header {
  padding: 1.5rem 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  margin: 0 auto;
  padding: 0 0.667rem;
}
@media (min-width: 60rem) {
  .container {
    padding: 0 2.25rem;
  }
}
.container > * + * {
  margin-top: 1.5rem;
}
.container > * {
  margin-bottom: 0;
}

.container--xl {
  max-width: 90rem;
}

.container--md {
  max-width: 60rem;
}

@media (min-width: 60rem) {
  .container-vertical-spacing-2xl {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }
}

.container-vertical-spacing-xl {
  padding-top: 3rem;
  padding-bottom: 3rem;
}
@media (min-width: 60rem) {
  .container-vertical-spacing-xl {
    padding-top: 3.875rem;
    padding-bottom: 3.875rem;
  }
}

.container-vertical-spacing-lg {
  padding-top: 2.25rem;
  padding-bottom: 2.25rem;
}
@media (min-width: 60rem) {
  .container-vertical-spacing-lg {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}
