/* Colors */
:root {
  /* Palettes */
  --clr-red: #FFADAD;
  --clr-orange: #FFD6A5;
  --clr-yellow: #FDFFB6;
  --clr-green: #E4F1EE;
  --clr-blue: #D9EDF8;
  --clr-purple: #DEDAF4;
  --clr-hotPink: #ff1694;
  --clr-blush: #FEC5E5;
  
  /* Dark */
  --clr-dark: #070a13;
  --clr-slate400: #94a3b8;
  --clr-slate600: #475569;
  --clr-slate800: #1e293b;
  
  /* SIZES */
  --size-xxs: 0.5rem;
  --size-xs: 0.75rem;
  --size-sm: 0.875rem;
  --size-base: 1rem;
  --size-lg: 1.125rem;
  --size-xl: 1.25rem;
  --size-2xl: 1.5rem;
  --size-3xl: 1.875rem;
  --size-4xl: 2.25rem;
  --size-5xl: 3rem;
  --size-6xl: 3.75rem;
  --size-7xl: 4.5rem;
  --size-8xl: 6rem;
  --size-9xl: 8rem;
  --size-10xl: 10rem;

}


/* swiperJS */
.swiper-pagination-bullet-active {
  background-color: var(--clr-hotPink) !important;
}

.swiper-pagination-bullet {
  background: var(--clr-hotPink) !important;
}


/* Defaults, Resets */
*,
::before,
::after {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
  -webkit-tap-highlight-color: #000000000;
}

* {
  margin: 0;
  padding: 0;
  line-height: calc(1em + 0.5rem);
}





/* FONTS */

/* Louis George Cafe */
@font-face {
  src: url("../fonts/Louis George Cafe.ttf") format('truetype');
  font-family: LouisGeorge;
  font-display: block;
}

/* Catcheye */
@font-face {
  src: url("../fonts/Lamarkie.otf") format('truetype');
  font-family: Lamarkie;
  font-display: block;
}

/* Rosehot */
@font-face {
  src: url("../fonts/Rosehot.ttf") format('truetype');
  font-family: Rosehot;
  font-display: block;
}

html {
  scroll-behavior: smooth;
  height: -webkit-fill-available;
}

body {
  font-family: LouisGeorge;
  background-color: #0D0907;
  color: white;
  height: -webkit-fill-available;
}

main {
  margin-top: 5rem;
}

button {
  border: none;
  background: none;
  display: inline-block;
  padding: 0;
  cursor: pointer;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  user-select: none;
{

