@import 'navbar.css';
@import 'footer.css';
.parent {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(5, 1fr);
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    background-color: #F7F9FB;
    font-family: "lato", sans-serif;
}

body {
    background-color: #F7F9FB;
}

.div1 {
    grid-area: 1 / 1 / 2 / 6;
    font-family: "lato", sans-serif;
    background-color: #F7F9FB;
}

h1 span {
    border: 1px solid #484848;
    background-color: #484848;
    padding: 15px;
}

.header {
    padding: 80px;
    width: 100%;
    height: 720px;
    text-align: left;
    background: #8FC1E3;
    background-image: url("images/IMG_4536_copy2.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50% 90%;
    color: #F7F9FB;
    box-sizing: border-box;
    line-height: 5px;
}

.header h1 {
    font-size: 60px;
    padding-top: 75px;
}

.build {
    display: grid;
    width: inherit;
    height: inherit;
    box-sizing: border-box;
    grid-area: 2 / 1 / 6 / 6;
    border: solid;
    border-radius: 25px;
    border-width: 10px;
    border-color: #31708E;
    margin: 30px;
    padding: 50px;
    padding-top: 0px;
    background-color: #F7F9FB;
}

.div2 {
    grid-area: 2 / 1 / 3 / 6;
    background-color: #F7F9FB;
    color: #484848;
    flex-wrap: wrap;
    box-sizing: content-box;
    width: inherit;
}

.column {
    float: left;
    width: 20%;
    padding: 5px;
}

.row::after {
    content: "";
    clear: both;
    display: table;
}

figcaption {
    font-size: 12px;
}

.div2 h2 {
    font-size: 35px;
    color: #5085A5;
}

.div2 p {
    font-size: 20px;
}

.div3 {
    grid-area: 3 / 1 / 4 / 3;
    color: #484848;
    font-family: "Lato", sans-serif;
    background-color: #F7F9FB;
}

.div3 h3 {
    color: #5085A5;
}

.div4 {
    grid-area: 3 / 4 / 4 / 6;
    color: #484848;
    font-family: "Lato", sans-serif;
    /*padding-right: 50px;*/
    padding-top: 50px;
    background-color: #F7F9FB;
}

.div5 {
    grid-area: 4 / 1 / 5 / 6;
    color: #484848;
    font-family: "Lato", sans-serif;
    padding-top: 30px;
}

.div5 h3 {
    color: #5085A5;
}

.div5 ul {
    list-style: none;
}

.div5 li::before {
    content: "\1F37A";
    color: #484848
}

#hikes {
    border-collapse: collapse;
    width: 100%;
    padding-left: 30px;
}

#hikes td, #hikes th {
    border: 1px solid #ddd;
    padding: 8px;
}

#hikes tr:nth-child(even) {
    background-color: #f2f2f2;
}

#hikes th {
    padding-top: 12px;
    padding-bottom: 12px;
    text-align: left;
    background-color: #687864;
    color: white;
}

@media only screen and (max-width: 600px) {
    .header h1 {
        font-size: 30px;
    }
    .header h2 {
        font-size: 10px;
    }
    .div2 h2 {
        font-size: 25px;
    }
    .div2 p {
        font-size: 20px;
    }
    .build {
        display: block;
        flex-wrap: wrap;
        flex-direction: column;
    }
    .column {
        float: left;
        width: 100%;
        padding: 5px;
    }
    .caption {
        display: none;
    }
    #hikes {
        padding: 0px;
    }
}

/* Medium Screens */

@media (min-width: 600px) and (max-width:900px) {
    .header h1 {
        font-size: 40px;
    }
    .header h2 {
        font-size: 13px;
    }
    .div2 h2 {
        font-size: 25px;
    }
    .div2 p {
        font-size: 20px;
    }
    .build {
        display: block;
        flex-wrap: wrap;
        flex-direction: column;
    }
}

/* Large Screens */

@media (min-width:901px) {}
