:root {
    --font-fam: "Ubuntu", sans-serif;
    --big-text: normal 2rem/150% var(--font-fam);
    --text: normal 1.2rem/150% var(--font-fam);
    --small-text: normal 1rem/150% var(--font-fam);

    --prim-col: rgba(36, 36, 36, .92);
    --red: #E31E24;

    font-size: 18px;

    --h1: bold 3rem/120% var(--font-fam);
    --h2: bold 2.5rem/120% var(--font-fam);
    --h3: bold 2rem/120% var(--font-fam);
    --h6: bold 1.5rem/140% var(--font-fam);
    --p: normal 1.4rem/140% var(--font-fam);

    --navbar-height: 7rem;
}

@media (max-width: 1100px) {
    :root {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    :root {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    :root {
        font-size: 14px;
    }
}

body {
    margin: 0%;
    background-color: #242424;
    color: white;
}

.bg-img-container {
    position: relative;
}

.bg-img-container>:not(.bg-img, .bg-overlay) {
    z-index: 1;
}

.bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 0;
}

.bg-img img {
    position: relative;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    object-position: center;
}

.bg-overlay {
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 0;

}

.content-img, .content-img img {
    border-radius: 20px;
}