.banner {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 200px;
    background-color: #2d4a52;
    gap: 10px;
    margin-top: 60px;
    
}

.banner h3 {
    padding-left: 20px;
    padding-right: 20px;
    color: white;
    font-size: 15px;
    font-family: 'Azo_Sans_Regular', 'sans-serif';
    width: 50%;
}

.banner .column-button {
    background: rgb(255, 255, 255);
    cursor: pointer;
    color: black;
    user-select: none;
    text-decoration: none;
    display: inline-block;
    font-weight:bolder;
    padding: .5rem 1.5rem .5rem 1.5rem;
    border-radius: 2rem;
    display: block;
    text-shadow: none;
    font-family: 'Azo_Sans_Bold', 'sans-serif';
    width: 160px;
    margin-right: 20px;
    text-align: center;
}

@media (max-width: 803px) {

    .banner {
        flex-direction: column;
    }
    
    .banner h3 {
        text-align: center;
        width: 100%;
    }
} 