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;
    font-family: 'Inter', sans-serif;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
    color: var(--bs-secondary-color);
    text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
    text-align: start;
}

.bg-brand-mauve {
    background-color: #d29887;
}

.bg-brand-peach {
    background-color: #eaac8b;
}

.bg-brand-tan {
    background-color: #f0cc92;
}

.hero-section {
    background-size: cover;
    background-position: center;
}

.brand-teal {
    color: #008080;
}

.bg-brand-teal {
    background-color: #008080;
}

.brand-button {
    background-color: #008080 !important;
    color: white !important;
}

    .brand-button:hover {
        background-color: white !important;
        color: #008080 !important;
    }

.border-brand-teal {
    border-color: #008080;
}

.brand-sand {
    color: #D2B48C;
}

.bg-brand-sand {
    background-color: #F5DEB3;
}

.brand-footer {
    background-color: #ca9c43;
    color: black;
}

.brand-dark-gray {
    color: #343A40;
}

.section-padding {
    padding: 4rem 1.5rem;
}

@media (min-width: 768px) {
    .section-padding {
        padding: 6rem 2rem;
    }
}