@font-face {
  font-family: "Cstmxprmntl 03 Web";
  src: url('../fonts/CSTMXprmntl03-Blackletter-Web.ttf') format("truetype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg-default: #e2ff40;
  --text-default: #000;
}

.w-layout-hflex {
  flex-direction: row;
  align-items: flex-start;
  display: flex;
}

body {
  background-color: var(--bg-default);
  color: #333;
  font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
  font-size: 14px;
  line-height: 20px;
}

.whip {
  color: var(--text-default);
  text-align: center;
  letter-spacing: 24px;
  padding-left: 24px;
  font-family: "Cstmxprmntl 03 Web", Arial, sans-serif;
  font-size: 200px;
}

.flex-block {
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 100vh;
}

@media screen and (max-width: 479px) {
  .whip {
    letter-spacing: 12px;
    padding-left: 8px;
    font-size: 70px;
  }
}


@font-face {
  font-family: 'Cstmxprmntl 03 Web';
  src: url('../fonts/CSTMXprmntl03-Blackletter-Web.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

/* Reveal overlay – vertical bars falling down on load */
.reveal-overlay {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  pointer-events: none;
}

.reveal-bar {
  flex: 1;
  min-width: 0;
  height: 100%;
  background: #000;
  transform: translateY(0);
  transition: transform 1.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-overlay.reveal-done .reveal-bar {
  transform: translateY(100%);
}