
					@font-face {
						font-family: "Lato";
						font-style: normal;
						font-weight: 400;
						font-display: swap;
						src: url("font/Lato-Regular.woff2") format("woff2");
					}
				
					@font-face {
						font-family: "Lato";
						font-style: italic;
						font-weight: 400;
						font-display: swap;
						src: url("font/Lato-Italic.woff2") format("woff2");
					}
				
					@font-face {
						font-family: "Lato";
						font-style: normal;
						font-weight: 500;
						font-display: swap;
						src: url("font/Lato-Medium.woff2") format("woff2");
					}
				
					@font-face {
						font-family: "Lato";
						font-style: normal;
						font-weight: 300;
						font-display: swap;
						src: url("font/Lato-Light.woff2") format("woff2");
					}
				
					@font-face {
						font-family: "Lato";
						font-style: normal;
						font-weight: 700;
						font-display: swap;
						src: url("font/Lato-Bold.woff2") format("woff2");
					}
				
					@font-face {
						font-family: "Lato";
						font-style: normal;
						font-weight: 900;
						font-display: swap;
						src: url("font/Lato-Black.woff2") format("woff2");
					}
				:root { --white-orig: rgb(255, 255, 255);--white: rgb(0, 0, 0);--negative-orig: rgb(245, 103, 103);--negative: rgb(152, 10, 10);--input-text-orig: rgb(107, 112, 127);--input-text: rgb(107, 112, 127);--text-inverted-orig: rgb(255, 255, 255);--text-inverted: rgb(0, 0, 0);--primary-orig: rgb(153, 26, 235);--primary: rgb(153, 26, 235);--secondary-orig: rgb(112, 246, 246);--secondary: rgb(9, 143, 143);--positive-orig: rgb(98, 246, 94);--positive: rgb(13, 161, 9);--input-background-orig: rgb(220, 220, 220);--input-background: rgb(35, 35, 35);--text-orig: rgb(100, 104, 124);--text: rgb(100, 104, 124);--dark-orig: rgb(20, 35, 83);--dark: rgb(172, 188, 235);--radius: 9px;--padding: 13px;--line-height: 1.05;--gap: 12px;--font-size: 16px;--section-spacing: 22px;--font-primary: Lato, sans-serif;--font-secondary: Lato, sans-serif;--font-textpage: Lato, sans-serif; }/* Document
 * ========================================================================== */
/**
 * 1. Add border box sizing in all browsers (opinionated).
 * 2. Backgrounds do not repeat by default (opinionated).
 */
*,
::before,
::after {
  box-sizing: border-box; /* 1 */
  background-repeat: no-repeat; /* 2 */
}

/**
 * 1. Add text decoration inheritance in all browsers (opinionated).
 * 2. Add vertical alignment inheritance in all browsers (opinionated).
 */
::before,
::after {
  text-decoration: inherit; /* 1 */
  vertical-align: inherit; /* 2 */
}

/**
 * 1. Use the default cursor in all browsers (opinionated).
 * 2. Change the line height in all browsers (opinionated).
 * 3. Breaks words to prevent overflow in all browsers (opinionated).
 * 4. Use a 4-space tab width in all browsers (opinionated).
 * 5. Remove the grey highlight on links in iOS (opinionated).
 * 6. Prevent adjustments of font size after orientation changes in iOS.
 */
:where(:root) {
  cursor: default; /* 1 */
  line-height: 1.5; /* 2 */
  overflow-wrap: break-word; /* 3 */
  -moz-tab-size: 4; /* 4 */
  -o-tab-size: 4;
     tab-size: 4; /* 4 */
  -webkit-tap-highlight-color: transparent; /* 5 */
  -webkit-text-size-adjust: 100%; /* 6 */
}

/* Sections
 * ========================================================================== */
/**
 * Remove the margin in all browsers (opinionated).
 */
:where(body) {
  margin: 0;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Edge, Firefox, and Safari.
 */
:where(h1) {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
 * ========================================================================== */
/**
 * Remove the margin on nested lists in Chrome, Edge, and Safari.
 */
:where(dl, ol, ul) :where(dl, ol, ul) {
  margin: 0;
}

/**
 * 1. Correct the inheritance of border color in Firefox.
 * 2. Add the correct box sizing in Firefox.
 */
:where(hr) {
  color: inherit; /* 1 */
  height: 0; /* 2 */
}

/**
 * Remove the list style on navigation lists in all browsers (opinionated).
 */
:where(nav) :where(ol, ul) {
  list-style-type: none;
  padding: 0;
}

/**
 * Prevent VoiceOver from ignoring list semantics in Safari (opinionated).
 */
:where(nav li)::before {
  content: "​";
  float: left;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 * 3. Prevent overflow of the container in all browsers (opinionated).
 */
:where(pre) {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
  overflow: auto; /* 3 */
}

/* Text-level semantics
 * ========================================================================== */
/**
 * Add the correct text decoration in Safari.
 */
:where(abbr[title]) {
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
:where(b, strong) {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
:where(code, kbd, samp) {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
:where(small) {
  font-size: 80%;
}

/* Embedded content
 * ========================================================================== */
/*
 * Change the alignment on media elements in all browsers (opinionated).
 */
:where(audio, canvas, iframe, img, svg, video) {
  vertical-align: middle;
}

/**
 * Remove the border on iframes in all browsers (opinionated).
 */
:where(iframe) {
  border-style: none;
}

/**
 * Change the fill color to match the text color in all browsers (opinionated).
 */
:where(svg:not([fill])) {
  fill: currentColor;
}

/* Tabular data
 * ========================================================================== */
/**
 * 1. Collapse border spacing in all browsers (opinionated).
 * 2. Correct table border color inheritance in all Chrome, Edge, and Safari.
 * 3. Remove text indentation from table contents in Chrome, Edge, and Safari.
 */
:where(table) {
  border-collapse: collapse; /* 1 */
  border-color: inherit; /* 2 */
  text-indent: 0; /* 3 */
}

/* Forms
 * ========================================================================== */
/**
 * Remove the margin on controls in Safari.
 */
:where(button, input, select) {
  margin: 0;
}

/**
 * Correct the inability to style buttons in iOS and Safari.
 */
:where(button, [type=button i], [type=reset i], [type=submit i]) {
  -webkit-appearance: button;
}

/**
 * Change the inconsistent appearance in all browsers (opinionated).
 */
:where(fieldset) {
  border: 1px solid #a0a0a0;
}

/**
 * Add the correct vertical alignment in Chrome, Edge, and Firefox.
 */
:where(progress) {
  vertical-align: baseline;
}

/**
 * 1. Remove the margin in Firefox and Safari.
 * 3. Change the resize direction in all browsers (opinionated).
 */
:where(textarea) {
  margin: 0; /* 1 */
  resize: vertical; /* 3 */
}

/**
 * 1. Correct the odd appearance in Chrome, Edge, and Safari.
 * 2. Correct the outline style in Safari.
 */
:where([type=search i]) {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Safari.
 */
::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

/**
 * Correct the text style of placeholders in Chrome, Edge, and Safari.
 */
::-webkit-input-placeholder {
  color: inherit;
  opacity: 0.54;
}

/**
 * Remove the inner padding in Chrome, Edge, and Safari on macOS.
 */
::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style upload buttons in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
 * ========================================================================== */
/*
 * Add the correct styles in Safari.
 */
:where(dialog) {
  background-color: white;
  border: solid;
  color: black;
  height: -moz-fit-content;
  height: fit-content;
  left: 0;
  margin: auto;
  padding: 1em;
  position: absolute;
  right: 0;
  width: -moz-fit-content;
  width: fit-content;
}

:where(dialog:not([open])) {
  display: none;
}

/*
 * Add the correct display in Safari.
 */
:where(details > summary:first-of-type) {
  display: list-item;
}

/* Accessibility
 * ========================================================================== */
/**
 * Change the cursor on busy elements in all browsers (opinionated).
 */
:where([aria-busy=true i]) {
  cursor: progress;
}

/*
 * Change the cursor on control elements in all browsers (opinionated).
 */
:where([aria-controls]) {
  cursor: pointer;
}

/*
 * Change the cursor on disabled, not-editable, or otherwise
 * inoperable elements in all browsers (opinionated).
 */
:where([aria-disabled=true i], [disabled]) {
  cursor: not-allowed;
}

/*
 * Change the display on visually hidden accessible elements
 * in all browsers (opinionated).
 */
:where([aria-hidden=false i][hidden]) {
  display: initial;
}

:where([aria-hidden=false i][hidden]:not(:focus)) {
  clip: rect(0, 0, 0, 0);
  position: absolute;
}

h1, h2, h3, h4, p, ul, ol {
  margin: 0;
  padding: 0;
  font-size: inherit;
  line-height: inherit;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: bold;
}

ul, ol {
  list-style-type: none;
}

figure, figcaption {
  margin: 0;
  padding: 0;
}

button, input, textarea {
  font-family: inherit;
  font-size: inherit;
}

picture, img {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

picture > img {
  width: 100%;
}

a {
  text-decoration: none;
}
a:visited, a:active {
  color: currentColor;
}

:where(nav li)::before {
  content: initial;
}

:root {
  --page-max-width: 1312px;
  --page-padding: calc((100% - var(--page-max-width)) / 2);
}
@media screen and (min-width: 1280px) and (max-width: 1439px) {
  :root {
    --page-max-width: 1120px;
  }
}
@media screen and (min-width: 880px) and (max-width: 1279px) {
  :root {
    --page-max-width: 768px;
  }
}
@media screen and (max-width: 879px) {
  :root {
    --page-max-width: 100%;
    --page-padding: max(16px, min(4.5vw, 40px));
  }
}

html {
  font-size: var(--font-size);
}

body {
  display: flex;
  flex-direction: column;
  background-color: var(--white);
  color: var(--text);
  font-family: var(--font-primary);
  font-size: var(--font-size);
  line-height: var(--line-height);
  min-height: 100vh;
}
body > .section {
  margin: var(--section-spacing) var(--page-padding);
}
body > .section_padding {
  padding: var(--section-spacing) var(--page-padding);
}

.modal-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
  opacity: 0;
  visibility: hidden;
  background-color: rgba(0, 0, 0, 0.8);
  padding: calc(var(--section-spacing) * 2);
  overflow-y: auto;
  display: grid;
  place-items: center;
  transition: opacity 0.2s ease-out 0s, visibility 0.2s ease-out 0s;
}
.modal-wrapper.active {
  opacity: 1;
  visibility: visible;
}
.modal-wrapper .modal {
  z-index: 10;
  opacity: 0;
  visibility: hidden;
  max-width: 580px;
  min-width: 300px;
  width: 100%;
  grid-row: 1;
  grid-column: 1;
  transition: opacity 0.2s ease-out 0s, visibility 0.2s ease-out 0s;
}
.modal-wrapper .modal.active {
  opacity: 1;
  visibility: visible;
}
.button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  padding: calc(var(--padding) * 0.5) calc(var(--padding) * 1.5);
  border-radius: var(--radius);
  color: var(--text-inverted);
  background-color: var(--primary);
  cursor: pointer;
  outline: none;
  border: 1px solid var(--primary);
  font-size: calc(var(--font-size) * 0.75);
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  text-align: center;
}
.button.button_transparent {
  background-color: transparent;
  color: var(--primary);
  border-color: currentColor;
}
.button.button_big {
  padding: calc(var(--padding) * 0.75) calc(var(--padding) * 3.5);
  font-size: var(--font-size);
}
.button.button_icon {
  padding: 0;
  border-radius: 0;
  background-color: transparent;
  border: none;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

a.button:focus, a.button:visited {
  color: var(--text-inverted);
}

a.button_transparent:focus, a.button_transparent:visited {
  color: var(--primary);
}

input.input, textarea.textarea {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: var(--input-background);
  color: var(--input-text);
  border-radius: var(--radius);
  padding: calc(var(--padding) * 0.75) calc(var(--padding) * 1.25);
  outline: none;
  border: none;
}

h1 {
  font-size: calc(var(--font-size) * 2);
  color: var(--dark);
}

h2 {
  font-size: calc(var(--font-size) * 1.25);
  color: var(--dark);
}

h3 {
  font-size: var(--font-size);
  color: var(--dark);
}
body > header.header {
  display: flex;
  align-items: center;
  gap: calc(var(--gap) * 2);
}
body > header.header .logo__image {
  width: 180px;
}
body > header.header .button_play-now {
  width: auto;
  margin-left: calc(var(--padding) * 1.5);
  border-radius: calc(var(--radius) * 2);
}
body > header.header .navbar {
  flex-grow: 1;
}
body > header.header .navbar__list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--gap);
}
body > header.header .navbar__list-item {
  display: flex;
  align-items: center;
}
body > header.header .navbar__link {
  font-size: calc(var(--font-size) * 0.75);
  font-family: var(--font-primary);
  color: var(--dark);
  text-align: center;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
body > header.header .buttons {
  display: flex;
  align-items: center;
  gap: calc(var(--gap) * 1.5);
}
@media screen and (max-width: 1279px) {
  body > header.header .buttons {
    display: none;
  }
}
body > header.header .username:not(.active) {
  display: none;
}
body > .prefooter {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  min-height: var(--section-spacing);
  max-height: var(--section-spacing);
}

body > footer.footer {
  display: flex;
  flex-direction: column;
  margin-top: auto;
  padding: calc(var(--section-spacing) * 2) var(--page-padding);
  gap: calc(var(--section-spacing) * 2);
  background-color: var(--dark);
}
body > footer.footer .top {
  display: flex;
  align-items: center;
  gap: calc(var(--gap) * 2);
}
@media screen and (min-width: 880px) and (max-width: 1279px) {
  body > footer.footer .top {
    display: grid;
    grid-template-columns: auto auto;
    grid-template-rows: auto auto;
    grid-template-areas: "logo   buttons" "navbar navbar";
    justify-content: space-between;
  }
}
@media screen and (max-width: 879px) {
  body > footer.footer .top {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
}
body > footer.footer .bottom {
  display: flex;
  flex-direction: column;
  gap: var(--gap);
  font-size: calc(var(--font-size) * 0.75);
}
body > footer.footer .bottom .disclaimer {
  color: var(--text-inverted);
  max-width: 900px;
}
body > footer.footer .logo {
  grid-area: logo;
}
body > footer.footer .logo__image {
  width: 180px;
}
body > footer.footer .navbar {
  flex-grow: 1;
  grid-area: navbar;
}
@media screen and (min-width: 880px) and (max-width: 1279px) {
  body > footer.footer .navbar {
    justify-self: flex-start;
  }
}
body > footer.footer .navbar__list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--gap);
}
@media screen and (max-width: 879px) {
  body > footer.footer .navbar__list {
    flex-direction: column;
    align-items: flex-start;
  }
}
body > footer.footer .navbar__list.right {
  justify-content: flex-end;
}
body > footer.footer .navbar__list-item {
  display: flex;
  align-items: center;
}
body > footer.footer .navbar__link {
  font-size: calc(var(--font-size) * 0.75);
  font-family: var(--font-primary);
  color: var(--text-inverted);
  text-align: center;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
body > footer.footer .buttons {
  display: flex;
  align-items: center;
  gap: calc(var(--gap) * 2);
  grid-area: buttons;
}
body > footer.footer .buttons .button_registration {
  color: var(--text-inverted);
}
form.login-modal, form.registration-modal, form.contact-success-modal {
  display: flex;
  flex-direction: column;
  padding: calc(var(--section-spacing) * 2);
  border-radius: var(--radius);
  background-color: var(--white);
  gap: var(--gap);
}
form.login-modal .title, form.registration-modal .title, form.contact-success-modal .title {
  text-align: center;
}
form.login-modal .password-wrapper, form.registration-modal .password-wrapper, form.contact-success-modal .password-wrapper {
  position: relative;
}
form.login-modal .password-wrapper .input, form.registration-modal .password-wrapper .input, form.contact-success-modal .password-wrapper .input {
  width: 100%;
}
form.login-modal .password-wrapper .button, form.registration-modal .password-wrapper .button, form.contact-success-modal .password-wrapper .button {
  position: absolute;
  top: 50%;
  right: calc(var(--padding) * 1.25);
  transform: translateY(-50%);
  background-image: url("images/password.svg");
  width: 16px;
  height: 16px;
}
form.login-modal .footer-wrapper, form.registration-modal .footer-wrapper, form.contact-success-modal .footer-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: calc(var(--gap) * 0.375);
  font-size: calc(var(--font-size) * 0.75);
}
form.login-modal .goto-register, form.login-modal .goto-login, form.registration-modal .goto-register, form.registration-modal .goto-login, form.contact-success-modal .goto-register, form.contact-success-modal .goto-login {
  text-decoration: underline;
  color: var(--dark);
  font-weight: bold;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
}
.cookie-banner {
  position: fixed;
  width: 100%;
  max-width: 660px;
  bottom: 0;
  visibility: hidden;
  opacity: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: calc(var(--gap) * 1.25);
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.6);
  padding: var(--section-spacing) calc(var(--section-spacing) * 2);
  background-color: var(--white);
  border-radius: var(--radius);
  transition: opacity 0.2s ease-out 0s, visibility 0.2s ease-out 0s, bottom 0.2s ease-out 0s;
}
.cookie-banner.active {
  opacity: 1;
  visibility: visible;
  bottom: 50px;
}
.cookie-banner__title {
  text-align: center;
}
.cookie-banner__text {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: calc(var(--gap) * 0.75);
}
.cookie-banner__buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: calc(var(--gap) * 1.25);
}
.cookie-banner__buttons .cookie-banner__button_accept {
  background-color: var(--dark);
  border-color: var(--dark);
}
.cookie-banner__buttons .cookie-banner__button_reject {
  color: var(--dark);
}
body > .gamepage {
  display: flex;
  flex-direction: column;
  gap: calc(var(--gap) * 2);
}
body > .gamepage .gamepage__title {
  display: flex;
  justify-content: center;
  text-align: center;
  padding: calc(var(--padding) * 0.75) calc(var(--padding) * 2.5);
  background-color: var(--secondary);
  border-radius: var(--radius);
  color: var(--dark);
}
body > .gamepage .gamepage__frame {
  align-self: center;
  width: 100%;
  aspect-ratio: 16/9;
  min-height: auto;
  max-width: 900px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
body > .disclaimer {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
body > .disclaimer .disclaimer__inner {
  display: flex;
  align-items: center;
  padding: calc(var(--padding) * 0.75) 40px;
  border-radius: var(--radius);
  background-color: var(--negative);
  gap: calc(var(--gap) * 2);
}
body > .disclaimer .disclaimer__icon {
  width: 24px;
  height: 24px;
}
body > .disclaimer .disclaimer__title {
  flex-grow: 1;
  text-align: center;
  color: var(--text-inverted);
}
figure.game {
  display: grid;
  grid-template-rows: auto 1fr;
  border-radius: var(--radius);
  background-color: var(--dark);
}
figure.game .game__logo {
  height: 180px;
  justify-self: center;
}
figure.game .game__wrapper {
  display: flex;
  flex-direction: column;
  padding: calc(var(--padding) * 1.5) calc(var(--padding) * 1.25);
  gap: var(--gap);
}
figure.game .game__title {
  color: var(--text-inverted);
  font-size: calc(var(--font-size) * 1.25);
  font-weight: bold;
  margin-bottom: auto;
}
figure.game .game__description {
  color: var(--text-inverted);
  --num-lines: 4;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: var(--num-lines);
  line-clamp: var(--num-lines);
  overflow: hidden;
  margin-bottom: calc(var(--padding) * 0.5);
  min-height: calc(var(--num-lines) * 1lh);
}
figure.game .game__description:hover {
  -webkit-line-clamp: 12;
  line-clamp: 12;
}
body > .games {
  display: flex;
  flex-direction: column;
  gap: calc(var(--gap) * 1.75);
}
body > .games .topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--padding) calc(var(--padding) * 2.5);
  background-color: var(--secondary);
  border-radius: var(--radius);
}
body > .games .topbar__title {
  color: var(--dark);
}
body > .games .topbar__icon {
  width: 24px;
  height: 24px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
body > .games .header {
  margin-bottom: calc(var(--padding) * 0.75);
}
body > .games .game-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, max-content));
  justify-content: space-between;
  gap: calc(var(--gap) * 1.75);
}
body > .games .game-list_alt {
  display: flex;
  flex-direction: column;
}
body > .games .game-list__item {
  display: flex;
}
body > .games .button_load-more {
  width: 100%;
  max-width: 350px;
  align-self: center;
  margin-top: calc(var(--padding) * 0.75);
  margin-bottom: calc(var(--padding) * 1.75);
  border-radius: calc(var(--radius) * 2);
  font-size: calc(var(--font-size) * 1.25);
}
body > .games .unloaded-games {
  display: none;
}
.contact {
  display: flex;
  flex-direction: column;
  gap: var(--gap);
  max-width: 800px;
}
.contact .title {
  margin-bottom: calc(var(--gap) * 2);
}
.contact .textarea {
  resize: vertical;
  min-height: 150px;
  max-height: 400px;
}
.contact__button {
  max-width: 300px;
  min-height: calc(var(--padding) * 2.25);
}
body > .banner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  border-radius: var(--radius);
  min-height: 320px;
  padding: calc(var(--padding) * 3.75);
  gap: calc(var(--gap) * 1.25);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
body > .banner.banner_image {
  background-image: url("images/banner-background@2x.png");
  background-image: -webkit-image-set(url("images/banner-background.png") 1x, url("images/banner-background@2x.png") 2x);
  background-image: image-set(url("images/banner-background.png") 1x, url("images/banner-background@2x.png") 2x);
}
body.dark > .banner.banner_image {
  border: 1px solid var(--text);
}

body > .banner.banner_image .title {
  color: var(--text-inverted-orig);
}
body > .banner.banner_image .subtitle {
  color: var(--text-inverted-orig);
}
body > .banner.banner_gradient {
  background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
}
body > .banner.banner_gradient .button {
  background-color: var(--secondary);
  color: var(--dark);
}
body > .banner .title {
  color: var(--text-inverted);
}
body > .banner .subtitle {
  color: var(--text-inverted);
  font-weight: normal;
  max-width: 950px;
  display: flex;
  flex-direction: column;
  gap: calc(var(--gap) * 0.75);
}
body > .banner .button_margin {
  margin-top: var(--padding);
}
section.textpage {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--gap);
  margin-bottom: calc(var(--section-spacing) * 2);
}
section.textpage * + h2, section.textpage * + h3 {
  margin-top: calc(var(--gap) * 2);
}
section.textpage h1.title {
  margin-bottom: calc(var(--gap) * 0.5);
}
section.textpage ul, section.textpage ol {
  display: flex;
  flex-direction: column;
  gap: var(--gap);
  list-style-type: initial;
  padding-left: 20px;
}
section.textpage li * + * {
  margin-top: calc(var(--gap) * 0.25);
}
body > main.main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto 1fr;
  grid-template-areas: "title     logo" "paragraph logo";
  gap: calc(var(--gap) * 1.25) calc(var(--gap) * 1.75);
}
body > main.main .title {
  grid-area: title;
  color: var(--dark);
}
body > main.main .paragraph {
  grid-area: paragraph;
  font-size: var(--font-size);
  display: flex;
  flex-direction: column;
  gap: var(--gap);
}
body > main.main .logo {
  grid-area: logo;
  margin: 0 auto;
  max-width: 580px;
}
