html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
    position: relative;
    min-height: 100%;
}

body {
    margin-bottom: 60px;
    background-color: #002C77;
    color: #ffffff;
    background-repeat: repeat;
    background-image: url("../images/background.png")
}

.logo {
    text-align: center;
}

.navbar-white {
    color: #ffffff;
    text-align: left;
}

a {
    color: #ffffff;
}

    a:visited {
        color: #c3b8b6;
    }

    a:hover {
        color: #DBA997;
    }

header {
    background-color: #002C77;
}

.footer {
    background-color: #002C77;
}

    .footer .container {
        color: #ffffff;
    }

        .footer .container a {
            color: #ffffff;
        }

            .footer .container a:visited {
                color: #9090ff;
            }

            .footer .container a:hover {
                color: #c0c0ff;
            }



.columns-container {
    display: flex;
    justify-content: space-between;
    padding-top: 20px;
    padding-bottom: 20px;
    gap: 20px;
}

.column {
    flex: 1;
    text-align: center;
    background-color: #217594;
    padding-bottom: 15px;
    border-radius: 10px;
}

    .column img {
        width: 100%;
        border-radius: 10px;
        margin-bottom: 10px;
        object-fit: cover;
    }

    .column p {
        font-size: 1.2em;
        margin: 0;
        padding-left: 5px;
        padding-right: 5px;
    }

.row {
    display: flex;
    align-items: center;
    background-color: #217594;
    border-radius: 10px;
    margin: 0px;
    gap: 20px;
}

    .row img {
        padding: 0px;
        flex: 1;
        max-width: 220px;
        height: auto;
        border-radius: 10px;
        object-fit: cover;
    }

.row-text {
    flex: 2;
    text-align: left;
}

    .row-text h2 {
        margin: 0 0 10px;
        font-size: 1.5em;
    }

    .row-text p {
        margin: 0;
    }
