* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat';
    box-sizing: border-box;
    word-break: break-word;
    scroll-behavior: smooth;
}

:root {
    --red: #a61d1d;
    --light_red: #e73a3a;
    --green: #c2d220;
    --dark_green: #41572c;
    --yellow: #fbb818;
    --gray: #616161;
    --white: #fff;
    --orange: #d69049;
    --dark_red: #c11717;
    --beige: #f7ecb7;
}

body {
    background: var(--white);
}

a {
    cursor: pointer;
    width: fit-content;
    display: inline-block;
    text-decoration: none;
    transition: .5s;
    font-size: 1vw;
}

img {
    width: 100%;
    max-width: 100%;
    pointer-events: none;
}

section {
    width: 100%;
}

h1,
h2 {
    color: var(--dark_green);
    font-weight: 700;
    line-height: 1;
}

p,
li {
    font-size: 1vw;
    font-weight: light;
    font-weight: 400;
}

@media (max-width: 996px) {
    p,
    li,
    a {
        font-size: 3.5vw;
        font-weight: 600;
    }
}