

/* FONT */

:root{
    font-size: 18px;
}

body {
    line-height: 1.6;
    font-family: Inter, sans-serif;
}

h1, .h1,
.font-semibold {
  font-style: normal;
}

h1, .h1 {
    font-size: 3em;
}

a {
    color: inherit;

}

a:hover {
    opacity: .8;

}


.divider-small {
    text-align: center;
    margin: 30px auto;
    border-bottom: 1px solid black;
    width: 150px;
}
:root,
[data-bs-theme=light] {
    --bs-primary-rgb: 3, 63, 99;
    /*--bs-secondary-rgb: 171, 152, 135;*/
    /*--bs-secondary-rgb: 62, 73, 84;*/
    /*--bs-secondary-rgb: 42, 63, 87;*/
    --bs-secondary-rgb: 30, 72, 111;
    --bs-success-rgb: 124, 152, 133;
    /*--bs-danger-rgb: 147, 13, 20;*/
    --bs-danger-rgb: 169, 0, 8;
    --bs-light: 240, 225, 230;
}

.btn-success {
    background-color: rgb(30, 72, 111);
    border-color: #1e486f;
}

.bg-offlimits{
    background-color: #0d6efd;
}

.text-offlimits{
    color: #0d6efd;
}

.hero-section {
    background-size: cover;
    background-position: center;
    color: #ffffff;
    padding: 100px 0;
}

.hero-section.leader {
    background-image: url('/assets/images/pexels-pixabay-247314_ext_cutout_3.jpg');
}

.hero-section.donate {
    background-image: url('/assets/images/doneer_bg_2.jpg');
}

.hero-section h1 {
    font-size: 3.6em;
}

.hero-section a:hover {
    color: var(--bs-danger-rgb);
}

@media screen and (max-width: 480px) {
    h1, .h1 {
        font-size: 2.2em;
    }
    .hero-section h1 {
        font-size: 2.8em
    }
    .hero-section:not(.leader) {
        padding: 60px 0;
    }

}

