﻿.banner {
    min-height: 50vh;
    background-image: url('/img/banner.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

@media (min-width: 768px) {
    .banner {
        background-image: url('/img/banner-w768.jpg');
        min-height: 60vh;
    }
}

@media (min-width: 992px) {
    .banner {
        background-image: url('/img/banner-long.jpg');
        background-size: contain;
    }
}

.customBtn {
    font-size: 170%;
    border: 5px solid var(--color-orange);
    border-radius: 35px;
    background-color: white;
}

.welcome-header {
    color: #888b89;
    font-weight: bold;
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
}

.welcome-text {
    color: #888b89;
    font-size: 120%;
}
