
.site{
    display: flex;
    min-height: 100vh;
    flex-direction: column;
    width: 100%;
}
#footer{
    flex: 1;
    background: #c5d5cb;
    display: flex; /* establish flex container */
    flex-direction: column; /* make main axis vertical */
    text-align: center;
    padding-top: 20px;
    margin-top:20px;
    justify-content: flex-start;
}
h1,h2,h3,h4,h5, li{
    font-family: 'Montserrat', sans-serif;

}

.block-1 h1{
    color: #e3e0cf;
}
#header h1{
    color: #ffffff;
    text-shadow: 2px 2px #000000;

}
.box{
    background: #e3e0cf;
}
.grey{
    background: #9fa8a3
;
}

.ds-flex-container{
    width: 100%;
    max-width: 1200px;
    margin: auto;
    box-sizing: border-box;
    overflow: hidden;
}

.ds-flex-container > div{
    padding: 15px;
    box-sizing: border-box;
}

.ds-navbar {
    background: #c5d5cb;
    display: flex;
    align-items: center;
}

.logo{
    font-size: 2rem;
    flex: 1;
    margin-left:20px;

}
@media (max-width: 400px) {
    .logo{  font-size: 1.5rem;
        text-align: center;
        padding-top: 20px;
        padding-bottom: 20px;
    }
    .ds-navbar {
    display: block}
    }.right{
    flex: 1;
    justify-content: flex-end;
}
.ds-navbar ul{

    flex-flow: row wrap;
    /* This aligns items to the end line on main-axis */
    justify-content: flex-end;
}
.ds-navbar li a{
    font-size: 1.3rem;
}
.ds-navbar li:hover{
    background: #e3e0cf;
}

.success{
    background: #9fa8a3;
}
.success:hover {
    background-color: #9fa8a3!important;
}
#main{
    margin-top: 20px;
    margin-bottom: 20px ;
}

#header{
    background: url("../images/bedroom-1872196_1920.jpg");
    background-size: cover;
    height: 400px;
    display: flex; /* establish flex container */
    flex-direction: column; /* make main axis vertical */
    justify-content: center; /* center items vertically, in this case */
    align-items: center;
    text-align: center;
    box-sizing: border-box;
}

