:root {
    --bs-font-sans-serif: "Montserrat", sans-serif;

    --bs-primary: #339999;
    --bs-primary-rgb: 51, 153, 153;

    --bs-link-color: #ff9d00;
    --bs-link-color-rgb: 255, 157, 0;
    --bs-link-decoration: underline;
    --bs-link-hover-color: #805717;
    --bs-link-hover-color-rgb: 128, 87, 23;
}

body {
    background-image: url("img/grey-stucco-1.png");
    background-repeat: repeat;
    background-position: center center;
    min-width: 350px;
    overflow-x: hidden;
}

/* PRESETS */

.fs-px-12 {
    font-size: 12px;
}

.fs-px-13 {
    font-size: 13px;
}

.fs-px-14 {
    font-size: 14px;
}

.fs-px-15 {
    font-size: 15px;
}

.level-1 {
    position: relative;
    z-index: 1;
}

.level-1:before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translate(0%, -50%);
    width: 3.5rem;
    height: 3.5rem;
    z-index: -1;
    border-radius: 50%;
    background-color: var(--bs-link-color);
}

