:root {
    --primary-color: #102d3f;
    --secondary-color: #95c1ad;
    --third-color: #92C020;
}

/* OpenSans - Bold */
@font-face {
    font-family: "OpenSans";
    src: url("../fonts/Open_Sans/OpenSans-Bold.ttf") format("opentype");
    font-weight: 700; /* Bold */
    font-style: normal;
}

/* OpenSans - Bold Italic */
@font-face {
    font-family: "OpenSans";
    src: url("../fonts/Open_Sans/OpenSans-BoldItalic.ttf")
    format("opentype");
    font-weight: 700; /* Bold */
    font-style: italic;
}

/* OpenSans Light - Italic */
@font-face {
    font-family: "OpenSans";
    src: url("../fonts/Open_Sans/OpenSans-LightItalic.ttf") format("truetype");
    font-weight: 400; /* Regular */
    font-style: italic;
}

/* OpenSans Light */
@font-face {
    font-family: "OpenSans";
    src: url("../fonts/Open_Sans/OpenSans-Light.ttf") format("opentype");
    font-weight: 400;
    font-style: normal;
}
/* Marketpro medium */
@font-face {
    font-family: "MarketPro";
    src: url("../fonts/MarketPro/MarketPro-CondMedium.otf") format("opentype");
    font-weight: 400;
    font-style: normal;
}



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

html,
body {
    height: 100dvh;
    width: 100dvw;
    overflow: hidden;
    font-family: OpenSans, sans-serif;
    display: flex;
    flex-direction: column;
}

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

a:hover {
    cursor: pointer;
}

