@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.10.5/font/bootstrap-icons.css");

@font-face {
    font-family: 'Lato';
    src: url(./Lato/Lato-Regular.ttf);
}

@font-face {
    font-family: 'Cutive';
    src: url(./Cutive_Mono/CutiveMono-Regular.ttf);
}

body {
    font-family: 'Lato';
    font-display: fallback;
    font-size: larger;
    line-height: 1.6;
    color: aliceblue;
}

/** General procedure

- Give the rules for mobile first
- Then give rules for larger screens using media exceptions

e.g.
@media (min-width: 576px) {
    h1 {
        font-size: 8vmin;
    }
}

****/

/**** Scroll ****/

.scroll-container {
    height: 100vh;
    overflow-y: scroll;
    overflow-x: hidden;
    scroll-snap-type: y proximity;
    padding-left: 0px;
    padding-right: 0px;
    margin-top: 9vmin;
}

.scroll-section {
    min-height: 91vh;
    /* because scroll-container margin-top: 9vmin*/
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    scroll-snap-align: start;
    scroll-snap-stop: always;
}

.subpage-container {
    height: 100vh;
    overflow-y: scroll;
    overflow-x: hidden;
    padding-left: 0px;
    padding-right: 0px;
    margin-top: 9vmin;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

/*
.subpage {
    min-height: 91vh;
    /* because scroll-container margin-top: 9vmin
}
*/

.scroll-contents {
    padding-top: 2vh;
}

.splash_image {
    width: 100%;
    height: 100%;
}

h1 {
    text-align: center;
    font-size: 10vmin;
    font-weight: bold;
    color: aliceblue;
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 4vmin;
    padding-bottom: 5vmin;
    /* https://www.sitepoint.com/css-viewport-units-quick-start/ */
}

@media (min-width: 576px) {
    h1 {
        font-size: 8vmin;
    }
}

h2 {
    text-align: center;
    font-size: 7vmin;
    font-weight: bold;
    color: aliceblue;
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 4vmin;
    padding-bottom: 3vmin;
}

@media (min-width: 576px) {
    h2 {
        font-size: 6vmin;
    }
}

.explanation_text {
    text-align: center;
    font-size: 4.5vmin;
    color: aliceblue;
}

@media (min-width: 576px) {
    .explanation_text {
        font-size: 3.5vmin;
    }
}

.form-label {
    color: aliceblue;
}

.form-text {
    color: aliceblue;
}

.banner-background {
    background-color: rgb(90, 90, 90);
}

.banner {
    background-color: rgb(90, 90, 90);
}

.banner-text {
    font-family: 'Courier', serif;
    font-display: fallback;
    font-size: 6vmin;
    color: aliceblue;
    text-align: center;
}


.nav-link {
    color: aliceblue;
}

.menu_button {
    color: aliceblue;
    border-color: aliceblue;
    font-size: 6vmin;
}

#page-contents {
    padding: 0px;
}

.news-flash {
    text-align: center;
    font-size: 3vmin;
    background-color: #2f2f2f;
    border-top: 1px solid aliceblue;
    border-bottom: 1px solid aliceblue;
    color: aliceblue;
    margin-top: 2vh;
}

@media (min-width: 576px) {
    .news-flash {
        margin-top: 0;
        font-size: 2.5vmin;
    }
}

#userNameZone {
    text-align: right;
}

@media (min-width: 576px) {
    #userNameZone {
        font-size: 2.5vmin;
    }
}


.format_devdata {
    font-family: 'Courier New', Courier, monospace;
    font-size: 3vmin;
    margin-top: 4px;
    margin-bottom: 4px;
    background-color: lightblue;
}

@media screen and (max-width: 600px) {
    .format_devdata {
        font-size: 2vmin;
    }
}

.input-form {
    max-width: 620px;
}

.format_contentssection {
    margin-top: 4px;
    margin-bottom: 4px;
}

.ai-highlight {
    font-weight: bold;
}

.btn-action {
    font-size: large;
}


/*
.format_aiOutputAreaHeader {
    font-size: larger;
}
*/

.format_aiOutputArea {
    font-family: 'Courier New', Courier, monospace;
    margin-top: 2vmin;
    margin-bottom: 2vmin;
}

.format_aiOutputTitle {
    font-size: larger;
    font-weight: bolder;
}

/*
.format_salesText {
    color: blue;
}
*/

.cta {
    padding-bottom: 52px;
}

.cta a {
    color: white;
    text-decoration: none;
    background-color: rgb(14, 101, 241);
    padding: 8px 12px;
    margin: 8px;
    min-height: 36px;
    border-radius: 2px;
    font-weight: 600;
}

.cta a:hover {
    background-color: rgb(66, 133, 244, 0.9);
}


/*
.format_includeArea {
    background-color: lightgray;
}

.format_collapsebutton {
    width: 100%;
    border: 2px solid rgb(65, 134, 246);
    background-color: white;
    font-size: 18px;
    font-weight: normal;
    color: rgb(65, 134, 246);
}

.format_icon {
    width: 1em;
    height: 1em;
    fill: rgb(65, 134, 246);
}

*/

/*
.next {
    font-size: 15px;
    margin-top: 8px;
    margin-bottom: 8px;
}

.container {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}
*/

.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 2147483645;
    box-sizing: border-box;
    width: 100%;

    background-color: #F1F6F4;
}

.cookie-consent-banner__inner {
    max-width: 960px;
    margin: 0 auto;
    padding: 32px 0;
}

.cookie-consent-banner__copy {
    margin-bottom: 16px;
}

.cookie-consent-banner__actions {}

.cookie-consent-banner__header {
    margin-bottom: 8px;

    font-family: "CeraPRO-Bold", sans-serif, arial;
    font-weight: normal;
    font-size: 16px;
    line-height: 24px;
}

.cookie-consent-banner__description {
    font-family: "CeraPRO-Regular", sans-serif, arial;
    font-weight: normal;
    color: #838F93;
    font-size: 16px;
    line-height: 24px;
}

.cookie-consent-banner__cta {
    box-sizing: border-box;
    display: inline-block;
    min-width: 164px;
    padding: 11px 13px;

    border-radius: 2px;

    background-color: #2CE080;

    color: #FFF;
    text-decoration: none;
    text-align: center;
    font-family: "CeraPRO-Regular", sans-serif, arial;
    font-weight: normal;
    font-size: 16px;
    line-height: 20px;
}

.cookie-consent-banner__cta--secondary {
    padding: 9px 13px;

    border: 2px solid #3A4649;

    background-color: transparent;

    color: #2CE080;
}

.cookie-consent-banner__cta:hover {
    background-color: #20BA68;
}

.cookie-consent-banner__cta--secondary:hover {
    border-color: #838F93;

    background-color: transparent;

    color: #22C870;
}

.cookie-consent-banner__cta:last-child {
    margin-left: 16px;
}