:root {
  --font-family: 'Poppins', sans-serif;
    
  --font-size-heading-xl: 40px;
  --line-height-heading-xl: 106px;
  
  --font-size-heading-lg: 26px;
  --line-height-heading-lg: 54px; 
  
  --font-size-text: 13px;
  --line-height-text: 30px;
  
  --font-weight-normal: 400;
  --font-weight-bold: 600;
  --letter-spacing-text: 0.08em;
  --letter-spacing-heading: 0.13em;
  --text-transform-text: normal;
  --text-transform-heading: uppercase;
  
  --colors-white: #FFFFFF;
  --colors-light: #F5F1EC;
  --colors-medium: #DED7CF;
  --colors-dark: #A19C97;
  --colors-black: #000000;
  
  --spacing-2xs: 8px;
  --spacing-xs: 12px;
  --spacing-sm: 16px;
  --spacing-md: 24px;
  --spacing-lg: 36px;
  --spacing-xl: 48px;
  --spacing-2xl: 72px;
  --spacing-3xl: 96px;
  
  --header-height: 136px;
  
  --transition-time: 300ms;
  --transition-ease: ease-out;
}

@media (max-width: 800px) {
  :root {
    --header-height: 64px;
  }
}

@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../_fonts/Poppins-Regular.woff2') format('woff2'),
    url('../_fonts/Poppins-Regular.woff') format('woff');
}

@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../_fonts/Poppins-600.woff2') format('woff2'),
    url('../_fonts/Poppins-600.woff') format('woff');
}

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-family);
  margin: 0;
}

main {
  padding: var(--spacing-2xl);
  min-height: 50vh;
}

main > section {
  margin-bottom: var(--spacing-3xl);
}

@media (max-width: 800px) {
  main {
    padding: var(--spacing-2xl) var(--spacing-md);
  }
  
  main > section {
    margin-bottom: var(--spacing-2xl);
  }
}

main > section:last-child {
  margin-bottom: 0;
}

h1,
h2,
h3,
h4,
h5,
p {
  margin: 0;
}

a {
  color: black;
}