body {
  margin: 0;
  line-height: normal;
  width: 100%;
  zoom: 0.7;
}

.popup-overlay {
  display: flex;
  flex-direction: column;
  position: fixed;
  inset: 0;
  animation: fadeIn 0.5s ease-in-out forwards; /* Add animation */
  opacity: 0; /* Initial opacity set to 0 (hidden) */
}

.popup-overlay.visible {
  opacity: 1; /* Set opacity to 1 (fully visible) */
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.popup-overlay.closing {
  animation: fadeOut 0.5s ease-in-out forwards; /* Replace with your animation */
  display: flex; /* Maintain display during animation */
  opacity: 1; /* Maintain opacity during animation */
}

@keyframes fadeOut {
  from { opacity: 1; }
  to { opacity: 0; }
}


:root {
  /* fonts */
  --font2: Hero;
  --font: "Actay Wide";
  --font5: Actay;
  --font-inter: Inter;
  --font-montserrat: Montserrat;

  /* font sizes */
  --font8-size: 32px;
  --font-size-41xl: 60px;
  --font-size: 64px;
  --font1-size: 200px;
  --font7-size: 36px;
  --font2-size: 22px;
  --font6-size: 26px;
  --font-size-29xl: 48px;
  --font-size-131xl: 150px;
  --font-size-5xl: 24px;
  --font-size-137xl: 156px;
  --font-size-21xl: 40px;
  --font3-size: 46px;
  --font-size-xl: 20px;
  --font4-size: 56px;
  --font-size-12xl-6: 31.6px;
  --font-size-335xl: 354px;
  --font-size-2xl-8: 21.8px;
  --font-size-2xs-9: 10.9px;
  --font-size-lg-1: 18.1px;
  --font-size-6xl-4: 25.4px;
  --font-size-10xl-1: 29.1px;
  --font-size-5xl-5: 24.5px;
  --font-size-10xl-4: 29.4px;
  --font-size-39xl: 58px;
  --font-size-9xl: 28px;
  --font-size-354xl-7: 373.7px;
  --font-size-43xl: 62px;
  --font-size-403xl-2: 422.2px;
  --font-size-33xl: 52px;
  --font-size-97xl-9: 116.9px;
  --font-size-106xl: 125px;

  /* Colors */
  --color-gainsboro-100: #ddd8d7;
  --color-gainsboro-200: #dcd7d6;
  --color-black: #000;
  --color-silver: #c4c4c4;
  --color-white: #fff;
  --color-darkorange: #ff9505;
  --color-gray-100: #1e1e1e;
  --color-gray-300: #0e151e;
  --color-gray-200: rgba(0, 0, 0, 0.5);
  --color-darkgray: #a8a8a8;
  --color-lightgray-200: #d4d5ca;
  --color-darkslateblue: #1c2a54;
  --color-teal: #008397;
  --color-steelblue: #6781a5;
  --color-rosybrown: #cb8f8a;

  /* Paddings */
  --padding-xl: 20px;
  --padding-41xl: 60px;

  /* Border radiuses */
  --br-61xl: 80px;
  --br-3xs: 10px;
  --br-xl: 20px;
  --br-21xl: 40px;
  --br-131xl: 150px;
  --br-41xl: 60px;
  --br-6xs-4: 6.4px;
  --br-3xs-1: 9.1px;
}
