@font-face {
    font-family: "Idaho";
    src: url(../fonts/idaho.woff2) format("woff2");
    font-weight: normal;
    font-style: normal
}

@font-face {
    font-family: "Idaho";
    src: url(../fonts/idaho_serif.woff2) format("woff2");
    font-weight: bold;
    font-style: normal
}

/* CSS Reset */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, a, img, ol, ul, li {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

/* Inpage overwrites */

.carousel-text h2 {
    text-transform: uppercase;
    font-weight: bold !important;
}

/* Page styles */
body {
    min-height: 100vh;
    font-family: 'Idaho', sans-serif;
}

header {
    display: block;
    /*background-color: #7d4802;*/
}

.banner {
    width: 100%;
    display: block;
}

#app-wrapper {
    box-sizing: border-box;
}

.grid_img img {
    display: block;
    width: 100%;
}

.grid_container {
    /*max-width: 1140px;*/
    margin: 0 25px 25px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 20px 20px;
    grid-auto-flow: row;
    grid-template-areas:
    "image1 image2 image3"
    "text1 text2 text3";
}

.text1 { grid-area: text1; }

.text2 { grid-area: text2; }

.text3 { grid-area: text3; }

.image1 { grid-area: image1; }

.image2 { grid-area: image2; }

.image3 { grid-area: image3; }

.grid_text h3 {
    text-align: center;
}

.recipeLink {
    text-decoration: none;
    color: #000000;
    &:hover {
    text-decoration: underline;
    color: #5c2f11;
     }
}

.videoOuterWrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    & .videoWrapper {
        width: 50%;
        margin-bottom: 2em;
        box-sizing: border-box;
    }
}

video {
    width: 100%;
}

footer {
    width: 100%;
    color: #ffffff;
    background-color: #03648d;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    padding: 20px 5px;
    text-align: center;
    /*border-top: 3px solid #ba131d;*/
}

.footerText {
    font-size: 12px;
    margin: 10px 0;
}

.footerText a:link,
.footerText a:visited,
.footerText a:active {
    color: #ffffff;
}

.footerText a:hover {
    text-decoration: none;
}

.footerHeading {
    font-size: 16px;
    margin: 10px 0;
}

@media screen and (max-width: 600px) {
    #app-wrapper {
        width: 100%;
    }

    .grid_container {
        display: flex;
        flex-direction: column;
    }

    .videoOuterWrapper .videoWrapper {
        width: 100%;
        padding: 18px;
    }
}
