/* This main css file contains the default rules and is geared toward the small/phone view */

* {
    box-sizing: border-box;
}

/* This wildcard applies to all elements ensuring a box layout model */

body {
    font-size: 16px;
    background: #f1f3f3;
    font-family: 'Roboto', helvetica, verdana;
    /* Declare the base font-family - from google font api or other */
}

header,
nav,
main,
footer {
    /* the comma means apply the following CSS declarations to all of the listed elements */
    /* Declare the maximum width and other main element rules to limit the stretch on wide views */
    max-width: 64rem;
    align-content: center;
    margin: auto;
}

header {
    background-color: #000;
    color: #fff;
    font-family: 'Roboto';
    font-weight: 900;
    padding: 0;
    overflow: auto;
    text-align: center;
    display: flex;
    flex-direction: column;
}

header h1 {
    font-size: 1.2rem;
    align-content: center;
    align-self: center;
}

header img {
    align-self: center;
}

header .subheading {}

nav {
    font-family: 'Roboto';
    font-weight: 900;
}

.hamburger {
    align-self: center;
}

nav .navigation.responsive {
    display: flex;
    flex-direction: column;
    list-style-type: none;
    margin-top: 0px;
    margin-left: 30px;
    margin-right: 30px;
    padding: 0;
    background-color: #3c8ed2;
    align-self: center;
}

.navigation li {
    border-bottom:2px solid #fff;
    text-align: center;
    display: none;
}
.navigation.responsive li {
    border-bottom:2px solid #fff;
    text-align: center;
    display: flex;
    flex-direction: column;
    flex: 0 1 auto;
}
.navigation.responsive li a {
    color: #fff;
    text-decoration: none;
    
}

.navigation.responsive li.active a {
    background-color: #B1D1ED;
    color: #191919;
}

.navigation.responsive li a:hover {
    background-color: #555;
    color: #fff;
}
.navigation.responsive li a:last-child {
    border-bottom: none;
}

main {}

main h2 {}

main figure {
    margin-left: auto;
    margin-right: auto;
    display: block;
}
.gallery {
    display: grid;
    grid-template-rows: 1fr;
    grid-gap: 0.45em;
    margin-bottom: 0.45em;
}
.image img:hover {
    box-shadow: 2px 2px 2px 2px #909090;
}
main figure img {
    width: 100%;
    display: block;
    margin-left: auto;
    margin-right: auto;
}
.section1 {
    width: auto;
    font-family: 'Roboto';
    font-weight: 300;
    color: #000;
    display: flex;
    flex-flow: column nowrap;
    align-items: center;

}
.header {
    align-self: flex-start;
}
    .current {
    height: 100px;
    margin: 0;
    font-size: 2rem;
    font-family: 'Roboto';
    font-weight: 900;
    display: flex;
}
    .current p{
    align-self: flex-start;
}
    .current img{
    height: 90px;
    align-self: flex-end;
}
    .highlow {
    min-height: 100px;
    border: 1px solid black;
    margin: 1em;
    min-width: 150px;
}
    .conditions {
    margin: 1em;
    border: 1px solid black;
}
    .forecast {
    display: none;
}


article p.town-article img {
    /* This structure refers to img elements that are the posterity of paragraph elements within artcle elements */
    width: 100px;
    /* fill the page in the small/phone view */
    margin: 2px;
}

footer {
    background-color: #000;
    color: #fff;
    font-family: 'Roboto';
    font-weight: 300;
    font-size: 0.875rem;
    text-align: center;
    padding: 0;
    overflow: auto;
}

footer aside {}

footer > p {}

/* This structure refers to p elements that are direct children of the footer element */

/* Other Class Selectors */