body {
    font-family: Open Sans, Montserrat;
    display: grid;
    grid-template-columns: 15% [featuredImage-start] 1fr 1fr 1fr [featuredImage-end] 15%;
    grid-template-rows: auto auto [featuredImage-start] auto [featuredImage-end] auto auto auto auto auto auto;
    grid-gap: 10px;
    grid-template-areas: '. . . . .' '. . . . .' '. . . . .' '. carousel carousel carousel .' '. categoryImg categoryImg categoryImg .' '. categoryImg categoryImg categoryImg .' '. catBlock1 catBlock2 features .' '. catBlock3 catBlock4 features .' 'footer footer footer footer footer';
}

#MainNav {
    font-family: 'Open Sans', sans-serif;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
}

.nav-link {
    color: #000;
}

.nav-link:hover {
    color: #c2cf20;
}

#topNav {
    grid-area: 1 / 1 / 2 / 6;
    background: #c2cf20;
}

header {
    grid-area: 1 / 1 / 2 / 6;
    background: #c2cf20;
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
}

header a {
    color: #000000;
}

header a:hover {
    color: #F7871f;
    text-decoration: none;
}

.featured-image {
    grid-area: featuredImage;
    background-image: url('images/featuredimg.jpg');
    background-color: rgba(192,192,192,0.5);
    background-blend-mode: screen;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 100%;
    max-height: 500px;
}

#logIn {
    grid-area: featuredImage / 4 / featuredImage / featuredImage;
    width: 100%;
    height: auto;
}

.btn {
    color: #fff;
    border-radius: 30px;
    background-color: #c2cf20;
    border: 6px solid;
}

.btn {
    color: #fff;
    border-radius: 30px;
    background-color: #c2cf20;
    border: 6px solid;
}

.submit-btn {
    border: none;
}

.btn-block {
    border-color: #e3ebc3;
    font-size: 14px;
}

.btn-block:hover {
    border-color: #c2cf20;
}

#featuredItems .col-12 h2 {
    background: #C2CF00;
}

.price {
    color: #F8981F;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
}

.store-categories-header {
    font-family: 'Montserrat', sans-serif;
    font-size: 48px;
    font-weight: 700;
    grid-area: 5 / featuredImage / 5 / featuredImage;
    background: #F8981F;
}

hr {
    width: 100%;
    border-top: 2px solid;
}

footer a.nav-link:hover {
    color: #ffffff;
}

.welcome {
    grid-area: featuredImage / featuredImage / featuredImage / 4;
}

.welcome h1 {
    color: #F8981F;
    font-weight: bold;
    text-transform: uppercase;
    text-shadow: 1 0 #ffffff;
}

.list-group-item {
    font-family: 'Montserrat', sans-serif;
    color: #000000;
    font-weight: 700;
    letter-spacing: 1px;
    border: none;
}

.list-group-item:hover {
    color: #ffffff;
    font-weight: 700;
    letter-spacing: 1px;
    background-color: #F8981F;
}

.overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 150px;
    height: 150px;
    opacity: 0;
    transition: .5s ease;
    background-color: #F8981F;
}

.overlay:hover {
    opacity: 1;
}

.text {
    color: white;
    font-size: .8rem;
    text-transform: uppercase;
    text-align: center;
    padding-top: 10%;
}

.slide:nth-child(odd) {
    background-color: #c2cf20;
}

.slide:nth-child(even) {
    background-color: #f8981f;
}

.container {
    position: relative;
}

.slider {
    width: 100%;
    height: 100%;
    display: flex;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
}

.slide {
    width: 150px;
    flex-shrink: 0;
    height: 100%;
}

.slide > div {
    /* CURRENT way. */
    scroll-snap-align: start;
    scroll-behavior: smooth;
}

.slide a {
    text-decoration: none;
}

.slide a:hover {
    text-decoration: none;
    font-weight: bolder;
}

