﻿
:root {
    --main-font: "Encode Sans", sans-serif;
}

h1, h3, .shoutout {
    font-family: var(--main-font);
    font-optical-sizing: auto;
    font-weight: bold;

}

p {
    text-align: justify;
}

/* Item that stands out at the top of the page, over top of other elements*/
.callout {
    position: absolute;
    right: 0;
    top: 100px;
    padding: 8px 16px !important;
}

/* Almost important enough to be a header, but not quite there */
.shoutout {
    font-size: 25px;
    font-optical-sizing: auto;
    font-style: normal;
}

.flex-container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%; 
}

.barr-nunn-logo {
    -webkit-text-stroke: 1.5px red;
    color: yellow;
    font-weight: bold;
}

.rounded-container {
    border-radius: 15px;

}

.icon-aligned i {
    margin-right: 10px;
}

ul {
    list-style-type: none;
    padding: 0;
    margin: 0 !important;
    text-align: center !important;
}

.button-link {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 25%;
    min-width: 310px;
}

.button-with-options {
    width: 25%;
    min-width: 310px;

}

.button-container {
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    gap: 15px;
    margin: 16px !important;
}

.button {
    font-family: var(--main-font);
    font-optical-sizing: auto;
    font-weight: bold;
}

.centered-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.button-container ul {
    text-align: left;
    padding: 5px;
    list-style-type: none;
    margin-left: 25px;
}

.call-to-action {
    font-size: 1.5rem;
}

.scrolling-wrapper {
    overflow: hidden;
    white-space: nowrap;
    display: flex;
}

scrolling-wrapper {
    overflow: hidden;
    white-space: nowrap;
    display: flex;
}

.scrolling-image {
    display: inline-flex;
    animation: scroll-left 40s linear infinite;
    border: 1px solid #A9A9A9;
    will-change: transform;
}

@keyframes scroll-left {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/*Small*/
@media (max-width: 1110px) {
    h1 {
        font-size: 23px;
        padding:2px;
    }

    .shoutout {
        font-size: 18px;
        font-family: var(--main-font);
        font-optical-sizing: auto;
    }

}

/*Medium*/
@media (max-width: 1110px) {
    .mobile-hide {
        display: none !important;
    }

    .callout {
        position: initial;
        right: initial;
        top: initial;
        padding: 0px !important;
    }

    .button-container > .button-link {
        width: 100%;
        margin: 10px 0;
    }

    .button-container {
        margin: 0px !important;
    }

    .button-with-options {
        width: 100%;
        margin: 10px 0;
    }

    .button-with-options ul {
        display: inline-block;
        text-align: left; /* Ensure the list items remain left-aligned */
    }

    .login-container {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
    }

    .button-link {
        width: 100%;
    }
}