html {
    font-family: 'Montserrat', sans-serif;
    height: 100%;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: #f5fff5;
}

h1, h2, h3, h4 {
    margin-bottom: 15px;
}

h1 {
    color: #000000;
}
.content h1{
    border-bottom: #686868 solid 1px;
    margin-bottom: 2rem;
}

.content h1 {
    text-align: left;
}

.content {
    text-align: justify;
}

.frontpage #header {
    height: 100vh!important;
}

#header {
    color: #FFFFFF;
    background: url("../images/puppy-1903313_1280.jpg");
    min-height: 400px;
    height:auto !important;
    height: 400px;
    background-size: cover;
    display: flex; /* establish flex container */
    flex-direction: column; /* make main axis vertical */
    justify-content: center; /* center items vertically, in this case */
    -ms-flex-pack: center;
    align-items: center;
    text-align: center;

}

#header h1 {
    color: white;
    text-shadow: 2px 2px 4px #000000;
    text-align: center;
}

.container {
    width: 960px;
    max-width: 1400px;
    margin: auto;
    margin-top: 15px;
    background: #ffffff;
    border: solid 1px #d0d5d8;
    padding: 10px;

    -webkit-box-shadow: 0px 0px 29px 2px rgba(194,194,194,1);
    -moz-box-shadow: 0px 0px 29px 2px rgba(194,194,194,1);
    box-shadow: 0px 0px 29px 2px rgba(194,194,194,1);
}



.logo {
    max-width: 100%;
    margin: auto;
    padding: 15px;
    text-align: center;
    font-size: 3rem;
}

.aside {
    background-color: #666666;
    padding: 15px;
    color: #ffffff;
    font-size: 14px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
}

#footer {
    background-color: #000;
    color: #ffffff;
    text-align: center;
    font-size: 12px;
    padding: 15px;
}

.right {
    float: right;
}
.left {
    float: left;
}

.ds-vertical-navigation{
    background: #000000;
}
.ds-vertical-navigation li a{
    color: #000000;
    text-transform: uppercase;
}
.ds-vertical-navigation li:hover{
    background: #686868;
}


@media only screen and (max-width: 600px) {
    .container{
        width: 100%;
    }

    .logo {
        width: 100%;
    }

}

