@font-face {
  font-family: 'Barethelly';
  src: url('/assets/fonts/Barethelly%20Signature.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Stickynotes';
  src: url('/assets/Stickynotes-ywLPd.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --blue: #579ada;
  --pink: #fe6fac;
  --pink-soft: #df9fbf;
  --pink-cta: #f81571;
  --pink-countdown: #ec70a6;
  --white: #ffffff;
  --max: 1760px;
  --header-h: 112px;
  --font-script: 'Barethelly', cursive;
  --font: 'Stickynotes', sans-serif;
  --font-body: 'Montserrat', sans-serif;
}

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

html {
  height: 100%;
  overflow: hidden;
}

body {
  min-height: 100%;
  height: 100%;
  font-family: var(--font-body);
  background: var(--white);
  color: #111;
  overflow-x: hidden;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--pink-cta) #f3e4eb;
}

body::-webkit-scrollbar {
  width: 5px;
}

body::-webkit-scrollbar-track {
  background: #f3e4eb;
}

body::-webkit-scrollbar-thumb {
  background: var(--pink-cta);
  border-radius: 999px;
}

body::-webkit-scrollbar-thumb:hover {
  background: var(--pink-countdown);
}

body.menu-open {
  overflow: hidden;
}

body.menu-open .header {
  backdrop-filter: none;
}

.page > main {
  flex: 1 0 auto;
  width: 100%;
  padding: 0;
  margin: 0;
  overflow: visible;
}

.wrap {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 clamp(0.9rem, 2.4vw, 1.6rem);
}

.page {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 100%;
  overflow: visible;
  background-color: var(--white);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}
