* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Cabin', sans-serif;
}

.hide {
    display: none;
}

.image-container {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh;
    width: 100vw;
}

.black-white {
    filter: grayscale(100%);
}

.title {
    margin: 0;
    color: white;
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    letter-spacing: 2px;
}

.title h1 {
    font-size: 2rem;
    text-transform: uppercase;
    margin-bottom: .5rem;
    text-shadow: 1px 1px 20px rgba(0, 0, 0, 0.3);
}

.title a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.7);
    transition: color 200ms ease;
}

.title a:hover {
    color: white;
}

.title h2 {
    font-size: 1rem;
    font-weight: 400;
    margin: 0;
    padding: 0 0 3px;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
}

.home {
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.5), transparent), url(https://source.unsplash.com/collection/140031/1600x900);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    color: white;
}

.home h1 {
    font-size: 1.5rem;
    margin: 0;
    letter-spacing: 1px;
}

@media (min-width: 800px) {
    .home h1 {
        font-size: 3rem;
    }
}

.home-inner {
    padding: 2rem 1rem;
    background: linear-gradient(rgba(0, 0, 0, 0.4), transparent);
}

.site-title {
    margin-bottom: 2rem;
}

.home-nav {
    color: white;
    list-style: none;
    padding: 0;
}

.home-nav li {
    margin: 1rem 0;
}

@media (min-width: 800px) {
    .home-nav li {
        margin: 1.5rem 0;
    }
}

.home-nav a {
    color: white;
    text-transform: uppercase;
}

.home-nav .button {
    padding: .5rem 1rem;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 5px;
    transition: background-color 200ms ease;
}

.home-nav .button:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.side-nav {
    width: 60vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    padding: 0 1rem;
    background: white;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: justify;
    justify-content: space-between;
    transition: all 500ms ease;
    transform: translateX(-60vw);
    z-index: 100;
}

@media (min-width: 500px) {
    .side-nav {
        width: 35vw;
        transform: translateX(-35vw);
    }
}

@media (min-width: 900px) {
    .side-nav {
        width: 20vw;
        transform: translateX(-20vw);
    }
}

@media (min-width: 1368px) {
    .side-nav {
        width: 15vw;
        transform: translateX(-15vw);
    }
}

.menu-open {
    transform: translateX(0);
}

.overlay-close {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 75;
}

.nav-header {
    font-size: 1rem;
    text-transform: uppercase;
    margin-top: 1rem;
}

@media (min-width: 600px) {
    .nav-header {
        font-size: 1.3rem;
        margin-top: 2rem;
    }
}

.city-nav ul {
    list-style: none;
    padding: 0;
}

.city-nav ul li {
    margin: .5rem 0;
}

.city-nav ul li a {
    text-decoration: none;
    color: black;
    font-size: 1rem;
}

.city-nav ul li a:hover {
    text-decoration: underline;
}

@media (min-width: 600px) {
    .city-nav ul li {
        margin: 1rem 0;
    }
}

.trigger {
    position: fixed;
    top: 2rem;
    right: 2rem;
    font-size: 2rem;
    color: white;
    transition: color 200ms ease;
    cursor: pointer;
    text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.3);
    z-index: 200;
}

.trigger p {
    margin: 0;
}

.trigger:hover {
    color: rgba(255, 255, 255, 0.7);
}

.menu-trigger {
    position: fixed;
    top: 2rem;
    left: 2rem;
    font-size: 2rem;
    color: white;
    transition: color 200ms ease;
    cursor: pointer;
    z-index: 50;
    text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.3);
}

.menu-trigger p {
    margin: 0;
}

.menu-trigger:hover {
    color: rgba(255, 255, 255, 0.7);
}

.credits {
    font-size: .8rem;
    margin-bottom: 1.5rem;
}

.menu-hor-rule-top {
    border: 1px solid #eee;
}

.ad {
    padding: 2rem 0;
    text-align: center;
}

@media (max-width: 768px) {
    .ad {
        display: none;
        padding: 2rem 0;
    }
}
