:root {
    --color-white: #ffffff;
    --color-black: #464646;
    --color-blue: #27658a;
    --color-pink: #B590BA;
    --color-orange: #AB7524;
    --color-grey: #848484;
    --color-green: #ADC956;

    --transition: all 400ms ease;

    --main-font: 'Circe';

    --container-width-lg: 130rem;
    --container-width-md: 88%;
    --container-width-sm: 92%;
}

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

@font-face {
    font-family: 'Circe';
    src: url("../fonts/CirceRounded-Bold.otf") format('truetype');
    src: url("../fonts/CirceRounded-Regular.otf") format('truetype');

}

html {
    box-sizing: border-box;
    /*10px/16px = 62.5% -> 1rem = 10px */
    font-size: 62.5%;

}

body {
    font-family: Arial;
    font-style: normal;
    font-weight: 400;
    font-size: 1.6rem;
    letter-spacing: 0.001em;
    color: var(--color-black);
    background-color: var(--color-white);
}

body.active__nav {
    overflow: hidden;
}

img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

h1 {
    font-weight: 400;
    font-size: 6.4rem;
    line-height: 7.6rem;
}

h2 {
    font-weight: 400;
    font-size: 5rem;
    line-height: 6rem;
}

h3 {
    font-weight: 400;
    font-size: 4.8rem;
    line-height: 4.4rem;
}

h4 {
    font-weight: 400;
    font-size: 2.6rem;
    line-height: 3rem;
}

h5 {
    font-weight: 400;
    font-size: 2.4rem;
    line-height: 3rem;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
}


/* .text-lg {
  font-size: 1.6rem;
  line-height: 2rem;
}

.text-md {
  font-size: 1.4rem;
  line-height: 2.1rem;
}

.text-sm {
  font-size: 1.2rem;
  line-height: 2rem;
}

.mt-3 {
  margin-top: 3rem;
}

.mb-1 {
  margin-bottom: 1rem;
}
  */
.container {
    width: 100%;
    max-width: var(--container-width-lg);
    margin: 0 auto;
    /* padding: 0 4rem; */
}

.header__container {
    width: 100%;
    max-width: 620px;
    margin: 0 auto;
}


.btn {
    display: inline-block;
    text-decoration: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    transition: var(--transition);
}

.btn--outline {
    border: 1px solid #a9edd7;
    border-radius: 5px;
}



body::-webkit-full-page-media{
    background-color: var(--color-white);
}

