:root {
    --jumbotron-padding-y: 3rem;
}

a {
    text-decoration: none;
}

footer {
    padding-top: 3rem;
    padding-bottom: 3rem;
}
footer p {
    margin-bottom: .25rem;
}


.alert + .alert {
    margin-top: -1rem;
}

.box-shadow {
    box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05);
}

/* Video */
.video-container {
    display: inline-block;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
}

.video-container video {
    border: 4px solid;
    border-radius: 100%;
}

/* Panels */
.alt-panel {
    background-color: #fff;
}

/* Jumbotron */
.jumbotron {
    padding-top: var(--jumbotron-padding-y);
    padding-bottom: var(--jumbotron-padding-y);
    margin-bottom: 0;
    background-color: #fff;
}
@media (min-width: 768px) {
    .jumbotron {
        padding-top: calc(var(--jumbotron-padding-y) * 2);
        padding-bottom: calc(var(--jumbotron-padding-y) * 2);
    }
}

.jumbotron p:last-child {
    margin-bottom: 0;
}

.jumbotron-heading {
    font-weight: 300;
}

.jumbotron .container {
    max-width: 40rem;
}


/* Accordion */
.accordion-item {
    background-color: transparent;
}
.accordion-body {
    background-color: var(--bs-accordion-bg);
}

/* Cards */
.card-img-top {
    aspect-ratio: auto;
    object-fit: cover;
    max-height: 250px;
    object-position: center 20%;
}

.col-md-5ths {
    flex: 0 0 20%;
    max-width: 20%;
}