.image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1; 
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.header-card{
    position: relative;
    width: 100%;
    height: 28.125em; 
    overflow: hidden; 
}

.blue-theme .image-overlay {
    background-color: rgba(32, 90, 173, 0.75); /* Blue tint */
}

.blue-theme p{
    color: white;
}

.green-theme .image-overlay {
    background-color: rgba(212, 221, 194, 0.75) /* Green tint */
}

.green-theme p{
    
    color: #242525;
}

.background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.green-theme .outter a {
    color: #242525;
}

.blue-theme .outter a {
    
    color: white;
}

.outter {
    display: flex;
    justify-content: left;
    align-items: center;
    height: 100%; 
    width: 80%;
    margin: auto;
    z-index: 1;
    color: black;
}

.outter p { 
    font-size: 3em;
    font-weight: 700;
    margin-bottom: .5em;
}

.outter a {
    text-decoration: underline;
    font-size: 1em;
}



@media (width <= 950px) {
    .background-image { /* kept for future reference */
        transform: scale(1); 
    }
}

@media (width <= 700px) {
}

@media (width <= 480px) {
}