/* Existing styles */

@font-face {
    font-family: 'Avenir Next LT Pro Regular';
    src: url('/fonts/AvenirNextLTPro-Regular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 18px;
    }
}

.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: 150px;
    background-color: #F4F4F4;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

.footer-text {
    font-family: 'Avenir Next LT Pro Light', sans-serif; /* Apply the font */
    color: #212529;
    font-weight:bolder;
}

.footer-text-cta {
    font-style:italic;
}

.footer-container {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    text-align: center;
}

.footer {
    background-color: #F4F4F4;
    padding: 10px 0;
}

.footer-container div:first-child {
    line-height: 1.2; /* Adjust this value to reduce or increase space between lines */
}

.insta-logo {
    width: 24px; /* Adjust this value to change the size of the icon */
    height: 24px; /* Adjust this value to change the size of the icon */
}

@media (min-width: 768px) {
    .footer-container {
        flex-direction: row;
        justify-content: space-evenly;
        text-align: left;
    }
}
