* {
    margin: 0; padding: 0; border: 0; box-sizing: border-box;
}

body {
    background-color:#fcd5ce;
    min-height: 100vh; min-width: 400px; max-width: 1400px; 
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

h1 {
    color: #b7b7a4;
    font-weight: bold; font-style: italic;
    margin-top: 3%;
}

a {
    text-decoration: none;
    color: #b7b7a4; font-style: italic; font-weight: bold;
    float: right;
}

a:hover {
    color: white;
}

.smallbox > div > a {
    padding: .2em;
    color: #cb997e; text-decoration: none;
    font-style: italic; font-weight: bold;
    float: left;
}

.smallbox > div > a:hover {
    color: white;
}

#container {
    width: 80vw;
    margin: auto;
}

#container > #header {
    display: flex;
    flex-wrap: row wrap;
}

#header > div {
    height: 10vh; width: 80vw;
    display: flex;
    flex-wrap: row wrap;
}

.title > div {
    flex: 1 0 40%;
}

.title > div:nth-of-type(1) {
    width: 15px;
    margin-right: 15%; margin-top: 3%;
    flex-grow: 1;
}

.title > div:nth-of-type(2) {
    margin-left: 10%; margin-top: 3%;
    flex-shrink: 1;
}

.title > div:nth-of-type(3) {
    flex-shrink: 1;
    margin-left: 2%; margin-top: 3%;
}

#middle > div {
    width: 80vw;
    display: flex;
    flex-wrap: row wrap;
    flex-direction: row;
    margin-top: 5%; margin-bottom: 5%;
}

.largebox > div {
    flex: 1 0 100%;
    height: 500px;
    background-image: url(../images/dress_main.jpg);
    background-size: contain;
    background-position: center;
}

.smallbox > div {
    height: 200px; width: 20vw;
    flex: 1 0 20%;
}

.smallbox > div:nth-of-type(1) {
    margin-right: 3%;
    border: 3px solid white;
    background-image: url(../images/shop_tops.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}

.smallbox > div:nth-of-type(2) {
    margin-right: 3%;
    border: 3px solid white;
    background-image: url(../images/shop_dresses.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}

.smallbox > div:nth-of-type(3) {
    margin-right: 3%;
    border: 3px solid white;
    background-image: url(../images/shop_bridal.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}

.smallbox > div:nth-of-type(4) {
    border: 3px solid white;
    background-image: url(../images/shop_accessories.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}

footer {
    height: 15vh; max-width: 1400px;
    border-top: 3px solid white;
    margin-top: 5%;
}

footer > nav > a {
    text-decoration: none;
    color: #b7b7a4; font-style: italic; font-weight: bold;
    float: left;
    padding: .7em;
}

footer > nav > a:hover {
    color: white;
}

img {
    width: 30px; height: 30px;
    float: left; margin-right: 1em;
}

