body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
    line-height: 1.5;
}

.wrapper {
    width: 100%;
    height: 100%;
    min-height: 100vh;
    position: relative;
    text-align: center;
}

.banner {
    position: absolute;
    left: 0;
    top: 0;
    object-fit: cover;
    width: 100%;
    height: 100%;
    z-index: -1;
}
.title {
    margin: 0 auto;
    max-width: 50rem;
    margin-bottom: 2rem;
    color: #424242;
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
}

.footer {
    margin: 0 auto;
    padding: 3rem 3rem 1rem 3rem;
    background: rgb(255 255 255 / 90%);
}

.footer small {
    color: #424242;
    font-size: 0.875rem;
    font-weight: 400;
}
.caption {
    padding: 4rem;
}

.caption img {
    max-width: 25rem;
    max-height: 7rem;
    object-fit: contain;
    width: 100%;
    height: 100%;
}

p.intro {
    color: #FFF;
    text-align: center;
    font-size: 1.25rem;
    font-weight: 400;
    max-width: 40rem;
    margin: 2rem auto;
}
.btn {
    text-decoration: none;
    color: #3D3B3B;
    font-size: 1.25rem;
    font-weight: 400;
    background: #fff;
    padding: 1rem 3rem;
    border-radius: 0.25rem;
    transition: ease 0.2s;
}

.btn:hover {
    background: transparent;
    border: 1px solid #fff;
    color: #ffff;
    transition: ease 0.2s;
}
p.info-label {
    border: 1px dashed #FFF;
    background: rgba(255, 255, 255, 0.20);
    display: inline-flex;
    color: #FFF;
    font-size: 1.25rem;
    font-weight: 400;
    padding: 0.75rem 3rem;
    border-radius: 0.25rem;
    margin: 0;
}
p.or {
    color: #FFF;
    font-size: 1.25rem;
    margin: 2rem 2rem 1.5rem 2rem;
}
@media only screen and (max-width: 767px){ 
    .btn {
        padding: 13px;
        text-decoration: none;
        color: #3D3B3B;
        font-size: 18px;
        font-weight: 400;
        background: #fff;
        border-radius: 0.25rem;
        transition: ease 0.2s;
    }
}