* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  font-size: 62.5%;

  --cornflower-blue: #5865f2;
  --cerulean-blue: #3442d9;

  --black: #000000;
  --gray-1: #23272a;
  --gray-2: #2c2f33;

  --white-1: #ffffff;
  --white-2: #f6f6f6; 
  --white-3: #f7f7f7;

  --xx-large: 4rem;
  --x-large: 3.2rem;
  --large: 2.4rem;
  --normal: 1.6rem;
  --small: 1.4rem;

  --lh-90: 90%;
  --lh-94: 94%;
  --lh-100: 100%;
  --lh-110: 110%;
  --lh-125: 125%;
  --lh-142: 142.85%;
  --lh-150: 150%;
  --lh-160: 160%;
}

body {
  font-family: 'Whitney Medium', sans-serif;
  font-size: var(--normal);
  color: var(--gray-1);
}

h1, h2 {
  font-family: 'Ginto Nord', sans-serif;
  font-size: var(--xx-large);
  line-height: var(--lh-110);
  font-weight: 900;
  text-transform: uppercase;
}

h3 {
  font-family: 'Ginto Normal', sans-serif;
  font-size: var(--x-large);
  line-height: var(--lh-94);
  font-weight: 700;
}

.snowsgiving-date-h3 {
  color: var(--cerulean-blue);
  margin: 8rem 0 2.4rem;
}

h4 {
  font-family: 'Ginto Nord', sans-serif;
  font-size: var(--small);
  font-weight: 500;
}

p {
  font-family: 'Whitney Book', Arial, sans-serif;
  font-size: calc(var(--normal) + 0.4rem);
  line-height: var(--lh-160);
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
}

.surprise-title {
  font-size: var(--large);
  line-height: var(--lh-125);
}

.nav-link {
  font-size: var(--normal);
  line-height: var(--lh-125);
}

.bundle-title {
  font-size: var(--x-large);
  line-height: var(--lh-100);
  margin: 0.8rem 0;
}

.bundle-reward {
  margin: 0.8rem 0;
}

.partner-text {
  font-size: var(--large);
  line-height: var(--lh-142);
}

.festival-title {
  color: var(--white-1);
}

.festival-text { 
  font-size: var(--large);
  line-height: var(--lh-142);
  color: var(--white-1);
}

.footer-title {
  font-size: var(--xx-large);
  line-height: var(--lh-90);
  color: var(--cornflower-blue);
}

.footer-caption {
  font-family: 'Whitney Semibold', Arial, sans-serif;
  font-size: var(--normal);
  line-height: var(--lh-150);
  color: var(--cornflower-blue);
}

.footer-link-item {
  font-family: 'Whitney Book', Arial, sans-serif;
  font-size: var(--normal);
  line-height: var(--lh-150);
  color: var(--white-1);
  display: block;
  margin-top: 0.8rem;
}

.footer-link-item:hover {
  text-decoration: underline;
}

.button {
  font-size: var(--small);
  line-height: var(--lh-142);
  color: var(--gray-1);
  display: flex;
  align-items: center;
  border-radius: 2rem;
  padding: 0.8rem 1.6rem;
  height: 3.8rem;
}

.l-button {
  font-family: 'Ginto Nord', sans-serif;
  font-size: var(--normal);
  line-height: var(--lh-125);
  color: var(--black);
  border-radius: 1.6rem;
  padding: 1.6rem 4rem;
  height: auto;
}

.l-button.large {
  width: 100%;
  max-width: 32.8rem;
  margin-top: 8rem;
}

:is(.button, .l-button).left {
  background: var(--white-1);
}

:is(.button, .l-button).right {
  background: var(--gray-2);
  color: var(--white-1);
}

.l-container {
  width: 95%;
  max-width: 120rem;
}

.container {
  width: 95%;
  max-width: 98rem;
}

.s-container {
  width: 90%;
  max-width: 88rem;
}

:is(.l-container, .container, .s-container) {
  margin: 0 auto;
}

:is(.l-container).padding {
  padding: 0 6rem;
}

:is(.container, .s-container).padding {
  padding: 0 2rem;
}

.mobile,
.nav-link.mobile {
  display: none;
}