@import url(reset.css);

body {
    font-family: verdana;
}

header {
    height: 40vh;
    display: flex;
    flex-flow: row wrap;
}

nav {
    width: 25vw;
}
.menu {
    text-decoration: none;
    display: block;
    width: 40px;
    height: 30px;
    margin: 0 auto;
    margin-top: 18vh;
    text-align: center;
    line-height: .5rem;
    font-size: 2rem;
    font-weight: bold;
    color: black;
}

.title {
    margin: 14vh auto 0 auto;
}

.title h1 {
    margin: 0 auto;
    width: 30vw;
    text-align: center;
    font-size: 4.5rem;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 12px;
    line-height: 3rem;
}

.title span {
    text-transform: lowercase;
    font-size: 3.5rem;
    font-weight: 100;
    font-family: sans-serif;
    letter-spacing: 21.5px;
    margin-left: 4px;
}

.social {
    display: flex;
    margin: 18.5vh 2.6vw 0 0;
    height: 1.5rem;
    width: 22.4vw;
}

.social:hover a {
    color: #777;
}

.social a {
    text-decoration: none;
    display: block;
    margin: 0 5px;
    height: 1.5rem;
    color: black;
}

.social a:hover {
    color: black;
}

main {
    min-height: 60vh;
    display: flex;
    flex-flow: row wrap;
}

.box1, .box2, .box3 {
    height: 60vh;
    width: 25vw;
    margin: 0 auto;
    background-size: 100%;

}
.box1 {
    background-image: url(../images/fruit.jpg);
    margin-left: 8vw;
}

.box2 {
    background-image: url(../images/jellyfish.jpg);
    background-size: 250%;
    background-position: 30% center;
}

.box3 {
    background-image: url(../images/cat.jpg);
    margin-right: 8vw;
}