body {
    margin: 0;
    background-color: rgb(20, 20, 20);
}

.navbar {
    position: sticky;
    top: 0;
    background-color: rgb(20, 20, 20);
    color: white;
}

.navbar__container {
    display: flex;
    flex-wrap: inherit;
    align-items: center;
    justify-content: space-between;
    margin: 0px auto;
    padding: 0px 10px;
    max-width: 1140px;
}

.navbar__brand {
    font-size: 1.25rem;
}

.navbar__list {
    list-style-type: none;
    display: flex;
}

.navbar__item {
    display: flex;
    align-items: center;
}

.navbar__link {
    color: white;
    margin-left: 16px;
}

.navbar__button {
    padding: 10px 20px;
    border-radius: 8px;
    background-color: #28a745;
    border: none;
    color: white;
}

.navbar__button:hover {
    background-color: #218838;
    border-color: #1e7e34;
}

.hero__section {
    background-image: url(hero-image-low-res.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    min-height: 100vh;
}

.hero__overlay {
    min-height: 100vh;
    background-color: rgba(0,0,0,.4);
    display: flex;
    justify-content: center;
    color: white;
}

.hero-text {
    text-align: center;
}

.hero-text__heading {
    margin-top: 20px;
    margin-bottom: 15px;
    font-size: 48px;
}

.hero-text__subheading {
    font-size: 36px;
    display: block;
}

.hero-text__button {
    font-size: 18px;
    padding: 10px 20px;
    border-radius: 8px;
    background-color: #28a745;
    border: none;
    color: white;
}

.hero-text__button:hover {
    background-color: #218838;
    border-color: #1e7e34;
}

.footer {
    background-color: rgb(20, 20, 20);
    color: white;
}

.footer__container {
    display: flex;
    align-items: center;
    justify-content: space-around;
    margin: 0px auto;
}

.footer-list {
    display: flex;
    list-style-type: none;
    padding-inline-start: 0px;
}

.footer-list__item {
    display: flex;
    align-items: center;
    padding: 0px 10px;
}

.footer-list__item__text {
    padding-left: 5px;
}

.footer-list__item__link {
    text-decoration: none;
    color: white;
    display: flex;
    align-items: center;
}

.bi-youtube {
    padding-top: 2px;
}

.youtube:hover {
    color: rgb(255, 0, 23);
}

.facebook:hover {
    color: rgb(14, 80, 247);
}

.instagram:hover {
    color: rgb(239, 0, 168);
}

@media (min-width: 768px) {
    .hero-text__heading {
        margin-top: 10px;
        font-size: 54px;
    }
    .hero-text__subheading {
        font-size: 48px;
    }
    .hero__section {
        background-image: url(hero-image-md-res.png);
    }
}

@media (min-width: 992px) {
    .hero__section {
        background-image: url(hero-image-hi-res.png);
    }
}

@media (min-height: 865px) {
    .hero-text__heading {
        margin-top: 15px;
        font-size: 48px;
    }
    .hero-text__subheading {
        font-size: 36px;
    }
}

@media (min-height: 945px) {
    .hero-text__heading {
        margin-top: 20px;
        font-size: 64px;
    }
    .hero-text__subheading {
        font-size: 36px;
    }
}

@media (min-height: 1100px) {
    .hero-text__heading {
        margin-top: 25px;
        font-size: 72px;
    }
    .hero-text__subheading {
        font-size: 54px;
    }
}

@media (min-height: 1150px) {
    .hero-text__heading {
        margin-top: 30px;
        font-size: 72px;
    }
    .hero-text__subheading {
        font-size: 48px;
    }
}

@media (min-height: 1200px) {
    .hero-text__heading {
        margin-top: 35px;
    }
}