.callout {
    height: 75vh;
    margin: 6rem 0;
    border-radius: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 15px;
    color: white;
    text-shadow: 0 0 black;
    position: relative;
    overflow: hidden;
}

.callout::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    backdrop-filter: blur(2px);
    background-color: rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.callout>* {
    position: relative;
    z-index: 2;
}

.callout.c1 {
    background: url(../../assets/images/callout-g.jpg) center center/cover no-repeat;
}

.callout.c2 {
    background: url(../../assets/images/callout-p.jpg) center center/cover no-repeat;
}

.callout .app-dl-btns {
    max-width: 500px;
    margin: 0 auto 20px;
}

.large-text h2 {
    font-size: 4rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
    margin-bottom: 3rem;
}


@media (max-width: 900px) {
    .large-text h2 {
        font-size: 2.8rem;
        margin-bottom: 2rem;
    }
}