/* RESET & NORMALIZATION */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.6;
  background: #F6F3EA;
  color: #215732;
}
ol, ul {
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* FONT IMPORTS */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,800,900&display=swap');
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,600,700&display=swap');

:root {
  --brand-green: #215732;
  --brand-green-light: #63C15B;
  --brand-green-faded: #99b985;
  --brand-lime: #C2E59C;
  --brand-accent: #F6F3EA;
  --brand-orange: #FFD357;
  --brand-yellow: #ffe495;
  --brand-pink: #FF9FCF;
  --brand-sky: #8ADAFF;
  --brand-dark: #1A3823;
  --white: #fff;
  --font-display: 'Montserrat', Arial, Helvetica, sans-serif;
  --font-body: 'Open Sans', Arial, Helvetica, sans-serif;
}

body {
  font-family: var(--font-body);
  background: var(--brand-accent);
  color: var(--brand-green);
  font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  letter-spacing: 0.01em;
  font-weight: 800;
  color: var(--brand-green);
  margin-bottom: 20px;
  line-height: 1.1;
}
h1 {
  font-size: 2.5rem;
  color: var(--brand-green);
  text-shadow: 2px 2px 0 var(--brand-lime), 0 2px 12px var(--brand-orange);
}
h2 {
  font-size: 2rem;
  color: var(--brand-green);
}
h3 {
  font-size: 1.35rem;
  color: var(--brand-dark);
}
p, li, address {
  font-size: 1rem;
  color: var(--brand-green);
  margin-bottom: 12px;
}
strong {
  font-weight: bold;
  color: var(--brand-green);
}

.subheadline {
  font-size: 1.25rem;
  margin-bottom: 24px;
  color: var(--brand-green-light);
  font-family: var(--font-body);
}

/* SPACING & CONTAINER PATTERNS */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}
.container {
  max-width: 1120px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 16px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  gap: 24px;
}

/* CARD CONTAINER & FLEX PATTERNS */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
}
.card {
  background: var(--white);
  border-radius: 24px;
  margin-bottom: 20px;
  padding: 32px 24px;
  box-shadow: 0 4px 18px 0 rgba(33, 87, 50, 0.09);
  position: relative;
  flex: 1 1 320px;
  min-width: 280px;
  transition: box-shadow 0.3s, transform 0.2s;
}
.card:hover {
  box-shadow: 0 8px 28px 0 rgba(33,87,50,0.15);
  transform: translateY(-4px) scale(1.025);
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.testimonial-card {
  display: flex;
  align-items: center;
  flex-direction: row;
  gap: 20px;
  padding: 20px;
  background: var(--white);
  border-radius: 18px;
  box-shadow: 0 2px 8px 0 rgba(194,229,156,0.12);
  margin-bottom: 20px;
  position: relative;
  max-width: 700px;
  width: 100%;
  transition: box-shadow 0.2s, transform 0.2s;
}
.testimonial-card:hover {
  box-shadow: 0 4px 20px 0 rgba(245,204,45,0.16);
  transform: scale(1.02) rotate(-1.5deg);
}

.testimonial-card p {
  color: #363624;
  font-size: 1.08rem;
  font-style: italic;
}
.testimonial-meta {
  margin-left: auto;
  color: var(--brand-green-light);
  font-weight: 700;
  font-size: 1rem;
  text-align: right;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 10px 0 rgba(138,218,255,0.10),0 1.5px 2px 0 rgba(33,87,50,0.03);
  padding: 28px 20px 22px 20px;
  min-width: 230px;
  flex: 1 1 230px;
  margin-bottom: 20px;
  transition: box-shadow 0.2s, transform 0.2s;
  cursor: pointer;
}
.feature-item:hover {
  box-shadow: 0 8px 30px 0 var(--brand-pink), 0 1.5px 3px 0 rgba(33,87,50,0.1);
  transform: scale(1.038) rotate(2.5deg);
}
.feature-item span[aria-label] {
  font-size: 2rem;
  display: block;
  filter: drop-shadow(0 4px 4px #ffe49588);
}

/* SPECIAL GRIDS */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
  width: 100%;
  justify-content: center;
}
.course-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin: 24px 0 20px 0;
}
.course-card {
  background: var(--white);
  border-radius: 18px;
  box-shadow: 0 3px 12px 0 rgba(33,87,50,0.07);
  padding: 28px 22px;
  min-width: 260px;
  max-width: 380px;
  flex: 1 1 260px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  transition: box-shadow 0.2s, transform 0.17s;
}
.course-card:hover {
  box-shadow: 0 8px 28px 0 var(--brand-yellow), 0 1.5px 3px 0 rgba(33,87,50,0.13);
  transform: scale(1.025) rotate(-1.1deg);
}
.course-card h3 {
  font-size: 1.2rem;
  color: var(--brand-dark);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 12px;
}
.course-card span {
  color: var(--brand-green-light);
  font-size: 1.1rem;
  font-weight: bold;
}

/* BLOG STYLES */
.blog-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 18px;
}
.blog-categories span {
  background: var(--brand-pink);
  color: var(--brand-green);
  font-family: var(--font-display);
  font-weight: 600;
  border-radius: 11px;
  padding: 4px 16px;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  transition: background 0.2s;
}

.article-preview-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 24px 0 28px 0;
}
.article-preview {
  background: #fff;
  box-shadow: 0 3px 14px 0 rgba(255, 159, 207, 0.08);
  border-radius: 16px;
  padding: 20px 20px 16px 20px;
  min-width: 250px;
  flex: 1 1 250px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
  transition: box-shadow 0.2s, transform 0.17s;
}
.article-preview:hover {
  box-shadow: 0 8px 32px 0 var(--brand-pink), 0 1.5px 3px 0 rgba(33,87,50,0.10);
  transform: scale(1.022) rotate(-1.5deg);
}

.article-preview h3 {
  font-size: 1.1rem;
  color: var(--brand-green);
}
.article-preview a {
  color: var(--brand-green-light);
  font-weight: 700;
  margin-top: 6px;
  font-size: 1.05rem;
  text-decoration: underline dotted;
  transition: color 0.16s;
}
.article-preview a:hover {
  color: var(--brand-pink);
}

input[type="text"] {
  border: 2px dashed var(--brand-green-light);
  background: var(--white);
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 1rem;
  color: var(--brand-dark);
  margin-bottom: 16px;
  outline: none;
  transition: border-color 0.16s;
}
input[type="text"]:focus {
  border-color: var(--brand-pink);
}

/* BUTTONS & CTAs */
.primary-cta, .secondary-cta, .cookie-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: 0.01em;
  border: none;
  outline: none;
  border-radius: 50px;
  padding: 14px 36px;
  margin-right: 16px;
  font-size: 1.08rem;
  cursor: pointer;
  transition: background 0.21s, color 0.17s, box-shadow 0.15s, transform 0.14s;
  box-shadow: 0 3px 14px 0 rgba(33, 87, 50, 0.09);
  position: relative;
  margin-bottom: 16px;
}
.primary-cta {
  background: var(--brand-green-light);
  color: var(--brand-green);
}
.primary-cta:focus, .primary-cta:hover {
  background: var(--brand-orange);
  color: var(--brand-dark);
  box-shadow: 0 8px 28px 0 var(--brand-orange), 0 1.5px 3px 0 rgba(33,87,50,0.11);
  transform: scale(1.07) rotate(-1deg);
}
.secondary-cta {
  background: var(--brand-pink);
  color: var(--brand-green);
}
.secondary-cta:focus, .secondary-cta:hover {
  background: var(--brand-green-light);
  color: var(--brand-dark);
  box-shadow: 0 2px 12px 0 var(--brand-pink), 0 1.5px 3px 0 rgba(33,87,50,0.10);
  transform: scale(1.04) rotate(1.5deg);
}
.course-card > a, .feature-item > a {
  margin-top: 10px;
}

.cookie-btn {
  min-width: 128px;
  font-size: 1rem;
  padding: 10px 25px;
  background: var(--brand-green-light);
  color: var(--brand-dark);
  margin-right: 8px;
  margin-bottom: 0;
  border: none;
}
.cookie-btn.accept {
  background: var(--brand-green);
  color: var(--white);
}
.cookie-btn.reject {
  background: var(--brand-pink);
  color: var(--brand-dark);
}
.cookie-btn.settings {
  background: var(--brand-orange);
  color: var(--brand-dark);
}
.cookie-btn:focus, .cookie-btn:hover {
  filter: brightness(1.08) drop-shadow(0 3px 8px #fff7);
  transform: scale(1.03);
}

/* NAVIGATION */
header {
  width: 100%;
  background: var(--white);
  box-shadow: 0 1.5px 6px 0 rgba(33,87,50,0.07);
  position: sticky;
  top: 0;
  z-index: 900;
  padding: 0;
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 18px;
  padding: 18px 16px 14px 16px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.main-nav a {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--brand-green);
  font-size: 1.09rem;
  position: relative;
  padding: 3px 8px 3px 8px;
  transition: color 0.17s, background 0.19s;
}
.main-nav a:after {
  content: '';
  display: block;
  height: 3px;
  width: 0%;
  background: var(--brand-yellow);
  border-radius: 2px;
  transition: width 0.18s;
  margin-top: 3px;
}
.main-nav a:hover:after, .main-nav a:focus:after {
  width: 100%;
}
.main-nav a.primary-cta {
  margin-left: auto;
  background: var(--brand-green-light);
  border-radius: 40px;
  padding: 8px 30px;
  color: var(--brand-green);
  box-shadow: 0 3px 14px 0 var(--brand-lime);
  font-weight: 900;
  font-size: 1.12rem;
  transition: box-shadow 0.16s, background 0.15s, color 0.13s;
}
.main-nav a.primary-cta:hover, .main-nav a.primary-cta:focus {
  background: var(--brand-orange);
  color: var(--brand-dark);
  box-shadow: 0 5px 22px 0 var(--brand-orange), 0 1.5px 3px 0 rgba(33,87,50,0.11);
}

.main-nav img {
  max-height: 44px;
  margin-right: 16px;
}

/* Burger/Hamburger Menu Button */
.mobile-menu-toggle {
  display: none;
  background: var(--brand-pink);
  color: var(--brand-green);
  font-size: 2.2rem;
  padding: 6px 18px;
  border: none;
  border-radius: 32px;
  position: absolute;
  top: 12px;
  right: 16px;
  z-index: 1200;
  cursor: pointer;
  transition: background 0.17s, color 0.14s, box-shadow 0.12s;
  box-shadow: 0 1.5px 8px 0 var(--brand-pink);
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: var(--brand-green-light);
}

/* Mobile Menu Overlay */
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 1400;
  background: var(--brand-lime);
  box-shadow: 0 7px 36px 0 var(--brand-pink);
  transform: translateX(-100vw);
  transition: transform 0.4s cubic-bezier(.62,1.4,.4,1);
  padding: 28px 0 0 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  top: 18px;
  right: 22px;
  font-size: 2.2rem;
  background: var(--brand-pink);
  color: var(--brand-green);
  border: none;
  border-radius: 32px;
  padding: 6px 22px;
  z-index: 1450;
  cursor: pointer;
  transition: background 0.17s, color 0.14s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  background: var(--brand-green);
  color: var(--white);
}
.mobile-nav {
  padding-top: 70px;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
  margin-left: 32px;
}
.mobile-nav a {
  font-size: 1.32rem;
  color: var(--brand-dark);
  font-family: var(--font-display);
  padding: 9px 0;
  font-weight: 900;
  border-radius: 7px;
  background: none;
  width: 88vw;
  max-width: 410px;
  transition: background 0.15s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--brand-green-light);
  color: var(--white);
}

/* Footer */
footer {
  background: var(--brand-green);
  color: var(--white);
  padding: 40px 0 20px 0;
  margin-top: 60px;
  width: 100%;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}
.footer-nav a {
  color: var(--brand-lime);
  font-family: var(--font-display);
  font-size: 1rem;
  padding: 4px 8px;
  border-radius: 6px;
  font-weight: 700;
  transition: background 0.17s, color 0.14s;
}
.footer-nav a:hover {
  background: var(--brand-orange);
  color: var(--brand-green);
}
footer address {
  font-size: 1rem;
  text-align: center;
  margin-top: 4px;
  color: var(--white);
  font-style: normal;
}

/* Confirmation Block */
.confirmation-block {
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 3px 18px 0 var(--brand-lime);
  padding: 38px 24px;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  gap: 20px;
}

/* Contact Info Section (Kontakt Page) */
.contact-info-section {
  background: var(--brand-green-light);
  color: var(--brand-green);
  border-radius: 13px;
  box-shadow: 0 2px 8px 0 rgba(194,229,156,0.10);
  padding: 16px 18px;
  margin-bottom: 20px;
  width: 100%;
  max-width: 520px;
  text-align: left;
}
.contact-info-section a {
  color: var(--brand-dark);
  text-decoration: underline;
  font-weight: bold;
  transition: color 0.15s;
}
.contact-info-section a:hover {
  color: var(--brand-pink);
}
.map-placeholder {
  margin: 18px 0 20px 0;
  padding: 14px 12px;
  border-radius: 14px;
  background: var(--brand-lime);
  font-size: 1rem;
  color: var(--brand-dark);
  font-style: italic;
}

/* ********* COOKIE CONSENT BANNER & MODAL ********* */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: var(--brand-yellow);
  color: var(--brand-dark);
  padding: 22px 12px 20px 12px;
  box-shadow: 0 -3px 26px 0 var(--brand-pink);
  z-index: 2000;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 32px;
  animation: cookieSlideUp 0.6s cubic-bezier(.75,1.5,.64,1.01);
}
@keyframes cookieSlideUp {
  from { transform: translateY(80px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner-text {
  max-width: 670px;
  font-size: 1rem;
  color: var(--brand-dark);
  margin-right: 24px;
}
.cookie-buttons {
  display: flex;
  gap: 12px;
}

.cookie-modal-overlay {
  position: fixed;
  z-index: 2100;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(33,87,50,0.50);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.25s;
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: var(--white);
  border-radius: 18px;
  box-shadow: 0 8px 52px 6px var(--brand-lime);
  padding: 38px 28px 32px 28px;
  min-width: 295px;
  max-width: 440px;
  min-height: 240px;
  display: flex;
  flex-direction: column;
  gap: 23px;
  align-items: flex-start;
  position: relative;
  animation: cookieModalZoomIn 0.36s cubic-bezier(0.25,1.5,0.49,1.01);
}
@keyframes cookieModalZoomIn {
  from { transform: scale(0.86); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.cookie-modal h2 {
  color: var(--brand-green);
  font-size: 1.13rem;
  margin-bottom: 0;
}
.cookie-modal-category {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  margin-bottom: 12px;
}
.cookie-modal-label {
  font-weight: 700;
  margin-right: 4px;
}
.cookie-modal-switch {
  width: 44px;
  height: 26px;
  background: var(--brand-pink);
  border-radius: 13px;
  position: relative;
  margin-left: 10px;
  display: inline-block;
  cursor: pointer;
  transition: background 0.16s;
}
.cookie-modal-switch[data-checked="true"] {
  background: var(--brand-green-light);
}
.cookie-modal-switch-knob {
  position: absolute;
  left: 4px;
  top: 4px;
  width: 18px;
  height: 18px;
  background: var(--white);
  border-radius: 50%;
  box-shadow: 0 1px 3px 0 rgba(33,87,50,0.10);
  transition: left 0.15s, background 0.13s;
}
.cookie-modal-switch[data-checked="true"] .cookie-modal-switch-knob {
  left: 22px;
  background: var(--brand-green-light);
}
.cookie-modal-close {
  position: absolute;
  top: 17px;
  right: 18px;
  border: none;
  background: none;
  font-size: 1.7rem;
  color: var(--brand-pink);
  cursor: pointer;
  border-radius: 29px;
  transition: background 0.12s, color 0.13s;
  padding: 2px 12px;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: var(--brand-green-light);
}
.cookie-modal .cookie-btn {
  margin-top: 12px;
}

/* ********** UTILITIES ********** */
.mt-32 { margin-top: 32px !important; }
.mb-24 { margin-bottom: 24px !important; }
.mb-40 { margin-bottom: 40px !important; }
.gap-8 { gap: 8px; }
.gap-16 { gap: 16px; }
.rounded-12 { border-radius: 12px !important; }
.d-flex { display: flex !important; }
.flex-col { flex-direction: column !important; }
.flex-row { flex-direction: row !important; }
.center-items { align-items: center !important; }
.justify-between { justify-content: space-between !important; }
.justify-center { justify-content: center !important; }

/* ************* RESPONSIVE DESIGN *************** */
@media (max-width: 1023px){
  .main-nav { padding: 12px 8px 10px 8px; }
  .section, .container { padding: 26px 8px; }
}
@media (max-width: 850px) {
  .main-nav a { font-size: 1rem; }
  .main-nav img { max-height: 34px; }
  .container { max-width: 98vw; }
  .course-card, .feature-item, .testimonial-card, .article-preview {
    min-width: 170px;
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .feature-grid, .course-grid, .card-container, .article-preview-list {
    flex-direction: column;
    gap: 18px;
    justify-content: flex-start;
    align-items: stretch;
  }
  .testimonial-card, .feature-item, .course-card, .article-preview {
    flex-direction: column;
    padding: 20px 12px;
    min-width: 0;
  }
  .testimonial-card {
    align-items: flex-start;
  }
  .container {
    padding: 0 6px;
    max-width: 100vw;
  }
  .content-wrapper {
    gap: 16px;
  }
  .section {
    padding: 24px 4px;
    margin-bottom: 32px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  .confirmation-block { padding: 20px 4px; }
  .cookie-banner {
    flex-direction: column;
    gap: 19px;
    padding: 19px 8px 17px 8px;
  }
}
@media (max-width: 480px) {
  h1 {
    font-size: 1.61rem;
  }
  h2 {
    font-size: 1.15rem;
  }
  .main-nav a.primary-cta {
    padding: 6px 10vw;
    font-size: 1rem;
  }
}

/* ********* playful_dynamic Visual Details ********* */
.feature-item, .course-card, .testimonial-card, .article-preview {
  border: 2.5px dotted var(--brand-pink);
  border-bottom: 4.5px solid var(--brand-yellow);
  box-shadow: 0 6px 14px 0 var(--brand-lime), 0 2px 9px 0 var(--brand-orange);
  animation: itemPop 1s cubic-bezier(.44,1.82,.16,1.05) both;
}
@keyframes itemPop {
  0% { transform: scale(0.81) rotate(-2deg); opacity: 0; }
  80% { transform: scale(1.06) rotate(2deg); }
  100% { transform: scale(1) rotate(0); opacity: 1; }
}

ul, ol {
  margin-bottom: 20px;
  padding-left: 16px;
}
li {
  margin-bottom: 9px;
  position: relative;
  color: var(--brand-green);
  font-size: 1rem;
}
ul li::marker, ol li::marker {
  color: var(--brand-green-light);
}
ul li {
  padding-left: 0.2em;
}

/* --- Micro-interactions --- */
.feature-item:active, .course-card:active, .primary-cta:active, .secondary-cta:active, .cookie-btn:active {
  filter: brightness(1.15) saturate(1.11) !important;
  transform: scale(0.97);
}

/* --- Scrollbar for playful vibe --- */
::-webkit-scrollbar {
  width: 12px;
  background: var(--brand-accent);
}
::-webkit-scrollbar-thumb {
  background: var(--brand-green-light);
  border-radius: 8px;
  border: 2px solid var(--brand-accent);
}

/* --- Selection highlight --- */
::selection {
  background: var(--brand-yellow);
  color: var(--brand-green);
}

/* ********** END OF STYLE *********** */
