/* ================= FONTS ================= */

* {
    font-family: "indivisible", sans-serif;
    font-weight: 400;
    font-style: normal;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "latienne-pro", serif;
    font-weight: 400;
    font-style: normal;
}

/* ================= COLORS ================= */

.text-primary {
    color: #6c935c;
}

.bg-primary {
    background-color: #6c935c;
}

.text-secondary {
    color: #402815;
}

.bg-secondary {
    background-color: #402815;
}

/* ================= BUTTONS ================= */

.btn-primary {
    background-color: #6c935c;
    color: #fff;
    padding: 10px 25px;
    border-radius: 50px;
    transition: 0.3s ease-in-out;
    border: 1px solid #6c935c;
}

.btn-primary:hover {
    background-color: #fff;
    color: #6c935c;
}

.btn-white {
    background-color: #fff;
    color: #6c935c;
    padding: 10px 25px;
    border-radius: 50px;
    transition: 0.3s ease-in-out;
    border: 1px solid #6c935c;
}

.btn-white:hover {
    background-color: #6c935c;
    color: #fff;
}