body {
    background-color: #eeeeee;
}
.hero {
    background-position: bottom center;
    background-repeat: no-repeat;
    overflow: hidden;
    background-image: url('../img/hero.jpg');
    height: 300px;
}
.section-events {
    background-position: top center;
    background-repeat: no-repeat;
    background-image: url('../img/bg.jpg');
    min-height: 565px;
    padding-top: 50px;
}
.month-header {
    font-size: 2rem;
    font-weight: 700;
    text-transform: uppercase;
}
.event-link {
    text-decoration: none;
}
.card-event {
    --bs-border-radius: 1rem;
    border-color: #eeeeee;
    color: #676767;
    font-size: 0.85rem;
    font-weight: 700;
}
.card-event .card-header {
    padding: 0;
}
.card-event .card-footer {
    background-color: rgba(230, 230, 230, 0.3);
    border-color: #eeeeee;
    text-transform: uppercase;
    color: #007ab3;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
}
.card-event .card-footer:hover {
    background-color: rgba(215, 215, 215, 0.3);
    text-decoration: none;
}
.event-name {
    color: #000;
    font-size: 1.125rem;
    font-weight: 900;
    margin-bottom: 5px;
    line-height: 1.2;
}
.badge {
    font-size: 0.85rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 6px;
    text-transform: uppercase;
}
.badge-all-ages {
    background-color: #3a873a;
    color: #fff;
}
.badge-19-plus {
    background-color: #5c3a87;
    color: #fff;
}
.btn-primary {
    background-color: #007ab3;
    color: #fff;
    border-radius: 0;
}

@media (min-width: 768px) {
    .hero {
        background-image: url('../img/hero-md.jpg');
        height: 500px;
    }
}

@media (min-width: 1200px) {
    .hero {
        background-image: url('../img/hero-lg.jpg');
        height: 500px;
    }
}

@media (min-width: 2560px) {
    .hero {
        background-size: cover;
    }
    .section-events {
        background-size: cover;
    }
}
