@font-face {
    font-family: "Poppins";
    src: url(../fonds/Poppins-Regular.ttf) format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "Poppins";
    src: url(../fonds/Poppins-Italic.ttf) format("truetype");
    font-weight: 400;
    font-style:italic;
    font-display: swap;
}
@font-face {
    font-family: "Poppins";
    src: url(../fonds/Poppins-Light.ttf) format("truetype");
    font-weight: 300;
    font-style:normal;
    font-display: swap;
}
@font-face {
    font-family: "Poppins";
    src: url(../fonds/Poppins-LightItalic.ttf) format("truetype");
    font-weight: 300;
    font-style:italic;
    font-display: swap;
}
@font-face {
    font-family: "Poppins";
    src: url(../fonds/Poppins-Bold.ttf) format("truetype");
    font-weight: 700;
    font-style:normal;
    font-display: swap;
}
@font-face {
    font-family: "Poppins";
    src: url(../fonds/Poppins-BoldItalic.ttf) format("truetype");
    font-weight: 700;
    font-style:italic;
    font-display: swap;
}
:root{
    --main-brand-color: #C7A003;
    --primary-color: #072A40;
    --secondary-color: #178CA4;
    --light-secondary-color: #18B7BE;
    --background-color: #fdfdf4;
    --text-color: #ffffff;
    --light-text-color: #f5f1e3;
    --secondary-text-color: #555;
    --line: 2.7ch;
    --font-scale: 0.5vw;
}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style:normal;
    font-size: calc(0.8rem + var(--font-scale));
    width: 100%;

    line-height: var(--line);
    margin: 0 auto;
    color: var(--text-color);
}
h1{
    font-size: calc(2.5rem + var(--font-scale));
    line-height: 1.2;
}
h2{
    font-size: calc(2.3rem + var(--font-scale));
    line-height: 1.2;
}
h3{
    font-size: calc(1.8rem + var(--font-scale));
    line-height: 1.2;
}
ul{
    list-style-position: outside;
}
li{
    margin-block: 0.1rem;
}
