#background-video {
    position: fixed;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
}

.homepage__outer-container {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-image: url(../assets/homepage/homepage-background.png);
    background-size: cover;
    background-repeat: no-repeat;
    color: #002B45;
    overflow: hidden;
}

.homepage__inner-container {
    width: 257px;
    height: 170px;
    display: inherit;
    flex-direction: inherit;
    justify-content: space-between;
    align-items: inherit;
    z-index: 100;
    position: fixed;
}

.homepage__learn-more-cta {
    width: 160px;
    height: 50px;
    display: inherit;
    justify-content: center;
    align-items: inherit;
    text-align: center;
    text-decoration: none;
    border: #002B45;
    border-radius: 10px;
    background-color: #FFFFFF;
    font-family: "stratum-1-web", sans-serif;
    font-weight: 700;
    font-style: normal;
    color: #002B45;
}

.homepage__learn-more-cta:visited {
    text-decoration: none;
    color: #002B45;
}

.homepage__learn-more-cta:hover {
    cursor: pointer;
}