#homepage {
    /* position: relative; */
    /* height: 100vh; */
    min-height: 100vh;
    /* min-height: 600px; */
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5)), url('/images/home-bg.png');
    background-size: cover;
    background-position-y: center;
}

/* #homepage::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5));
} */

.home-content {
    z-index: 2;
    text-align: center;
    color: var(--bg-white);
    max-width: 800px;
    /* margin-bottom: 100px; */
    padding: 50px;
}

.home-title {
    color: var(--bg-white);
    margin-bottom: .5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.home-subtitle {
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    color: var(--text-muted);
}

.home-buttons {
    /* background-color: blue; */
    /* display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    list-style: none;
    margin: 1rem 0 0;
    padding: 0;
    flex-wrap: wrap; */
}

/* .homepage-btn-holder {
    background-color: cyan;
    display: flex;
    align-items: center;
    justify-content: center;
} */

.home-content ul {
    display: flex;
    justify-content: center;
    list-style: none;
    list-style-image: none;
    margin: 0;
    padding: 0;
    /* margin-right: 1em; */
}

.home-content ul li {
    /* float: left; */
    padding: 0 10px;
    font-size: 1.2em;
}

.home-learn-more {
    margin-top: 40px;
    font-size: 1.41rem;
    color: var(--text-muted);
}

a {
    text-decoration: none;
}

@media screen and (max-width: 880px) {
  #homepage {
    background-position: center 80%; /* shift vertical focal point as needed */
  }
}

@media screen and (max-width: 400px) {
    .homepage ul {
        display: flex;
        flex-direction: column;
        gap: 25px;
    }
}