/* fonts */
/* Switzer */
@import url('https://api.fontshare.com/v2/css?f[]=switzer@100,200,300,400,500,600,700,800,900&display=swap');
/* font-family: "Switzer", serif; */


/* variables */
:root {
  /* colors */
  --color-text-body: #333333;
  --color-background-page: #FbF8FB;
  --color-background-card: #FFFFFF;


  /* spacings */
  --xxxs: 0.25rem;
  --xxs: 0.5rem;
  --xs: 0.625rem;
  --s: 0.875rem;
  --m: 1rem;
  --l: 1.125rem;
  --xl: 1.5rem;
  --xxl: 2.625rem;
  --xxxl: 3rem;
  --xxxxl: 4.8rem;
  --xxxxxl: 5.6rem;

  /* font sizes */
  --font-xxxs: 0.5rem;
  /* 8px */
  --font-xxs: 0.625rem;
  /* 10px */
  --font-xs: 0.75rem;
  /* 12px */
  --font-s: 0.875rem;
  /* 14px */
  --font-m: 1rem;
  /* 16px */
  --font-l: 1.125rem;
  /* 18px */
  --font-xl: 1.5rem;
  /* 24px */
  --font-xxl: 2.625rem;
  /* 42px */
  --font-3xl: 3rem;
  /* 48px */
  --font-4xl: 4.75rem;
  /* 76px */
  --font-5xl: 6rem;
  /* 96px */

  /* font weights */
  --lighter: 200;
  --light: 300;
  --regular: 400;
  --semi-bold: 500;
  --bold: 600;
  --bolder: 700;

  /* font family */
  --switzer: "Switzer", serif;

  /* border radius */
  --radius-xxs: 0.2rem;
  --radius-xs: 0.325rem;
  --radius-s: 0.5rem;
  --radius-m: 0.75rem;

  /* measures */
  --content-width: 84rem;
  --header-height: 5rem;
}


/* reset */
*,
*:before,
*:after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html {
  height: 100%;
  width: 100%;
  scroll-behavior: smooth;
  font-size: 16px;
  font-weight: var(--regular);
}

body {
  font-family: var(--switzer);
  background: var(--color-background-page);
  color: var(--color-text-body);
  min-height: 100svh;
  padding: var(--s);
  user-select: none;
  display: flex;
  flex-direction: column;
}

input,
button,
textarea,
select {
  font: inherit;
}

button,
a {
  outline: none;
  cursor: pointer;
  font: inherit;
  background-color: transparent;
  border: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
  color: inherit;
  margin: 0;
}

fieldset,
button,
input,
select,
textarea,
hr {
  -webkit-appearance: none;
  appearance: none;
}

input,
select,
textarea {
  background-color: transparent;
  outline: none;
  border: none;
}

img,
picture,
video,
canvas,
svg {
  max-width: 100%;
}

video,
canvas {
  display: block;
  width: 100%;
}

a,
button {
  color: inherit;
  -webkit-tap-highlight-color: transparent;
}

button {
  user-select: none;
}

a {
  text-decoration: none;
}

ul {
  list-style: none;
  padding: 0;
}

p,
span,
a {
  letter-spacing: 0.01rem;
}

/* media query */
@media (max-width: 1440px) {
  :root {
    --content-width: 98%;
  }
}