:root {
    --primary-font: "Varela Round", sans-serif;
    --white: #FFFFFF;
    --black: #000000;
    --red: #902C2C;
    --primary: #0A1B34;
    --secondary: #FE7D21;
    --light: #FEB430;
    --green: #25d366;
}

*,
html,
body,
p,
a,
span {
    margin: 0;
    box-sizing: border-box;
    font-family: "Varela Round", sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: var(--black);
    text-decoration: none;
    line-height: 1.2;
}

h1,
h2,
h3 {
    font-weight: 700;
    font-family: "Varela Round", sans-serif;
    margin: 10px 0;
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 3rem;
}

h3 {
    font-size: 2.5rem;
}

p {
    margin-bottom: 10px;
}

.text {
    color: var(--black);
    text-align: justify;
    font-size: 1rem;
}

@media screen and (max-width: 992px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    h3 {
        font-size: 1.2rem;
    }
}