@import url('https://fonts.googleapis.com/css2?family=Zen+Antique&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,200;0,400;1,600&display=swap');

body {
    margin: 0;
}
/* Typography */
/* @import('typography.css'); */
nav {
    background-color: rgb(104, 188, 199);
    width: 100%;
    position: fixed;
    z-index: 1;
}
nav ul {
    max-width: 1024px;
    margin: 0 auto;
    list-style-type: none;
    /* margin: 2%;
    padding: 3%; */
    overflow: hidden;
}
nav li {
    float: left;
}
nav li a {
    display: block;
    color: white;
    text-align: center;
    padding: 10px 15px;
    text-decoration: none;
}
nav li a:hover {
    background-color: cyan;
    transition: all .5s linear;
}
header {
    background-image: url('images/summit_farms_banner.jpeg');
    background-size: cover;
    width: 100%;
    background-repeat: no-repeat !important;
    height: 500px;
}

.container {
    max-width: 1024px;
    margin: 0 auto;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Zen Antique', serif;
}
h1 {
    font-size: 48px;
}
h2 {
    font-size: 36px;
}
h3 {
    font-size: 24px;
}

p {
    font-size: 18px;
    font-family: 'Raleway', sans-serif;
    line-height: 32px;
}

b {
    font-weight: 600;
}

/* Links */
a {
    font-family: 'Raleway', sans-serif;
}

a:hover {
    color: green;
}

/* Layout */

img {
    max-width: 100%;
}

.highlight {
    background: rgb(233, 233, 233);
    padding: 20px;
    border-bottom: 1px solid rgb(185, 185, 185);
}

.highlight img {
    width: 100%;
}

blockquote {
    position: relative;
    font-size: 24px;
    font-weight: 200;
    background: rgb(237, 253, 255);
    padding: 40px 40px 40px 60px;
}
blockquote::before {
    display: table;
    position: absolute;
    left: 0;
    top: 0;
    content: '“';
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-size: 160px;
    color: rgb(219, 240, 243);
}

.image-gallery {
    width: 800px;
    margin: 20px auto;
    display: flex;
    flex-wrap: wrap;
    
}

.image-gallery .image {
    width: 45%;
    border: 3px solid #555;
    margin: 10px;
    padding: 5px;
    background-size: cover !important;
    position: relative;
}


li.active {
    background-color: cyan;
}
li.active a {
    background-color: cyan;
    color: green;
}
ul.second {
    column-count: 3;
    column-width: 250px;
}

#backtotop {
    position: fixed;
    bottom: 20px;
    right: 20px;
}

footer {
    padding: 50px;
    color: #fff;
    min-height: 100px;
    background-color: rgb(104, 188, 199);
}

footer a, footer p {
    color: white;
}
