* {
    box-sizing: border-box;
    font-family: miller-headline,serif;
    font-weight: 400;
    font-style: normal;
    font-size: 20px
}

body {
    margin: 0;
}

img {
    width: 100%;
}

.logo {
    font-size: 25px;
    margin-left: 20px;
}

header nav {
    background-color: #446164;
    color: #F2F2F2;
    width: 100%;
    max-width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav {
    display: flex;
    justify-content: space-around;
    width: 100%;
    height: 10vh;
}

header nav ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

nav ul a {
    color: white;
    text-decoration: none;
    font-size: 25px;
    transition: color 250ms ease-in-out;
    padding: 2rem;
}

nav ul a:hover {
    color: #1A2829;
}


.hero  {
    background-image: url(images/pexels-lyovtravels-levon-13415559.jpg);
    height: 75vh;
    width: 100%;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.hero-content {
    width: 30%;
    background-color: rgba(0,0,0,0.5);
    color: white;
    margin-left: 20px;
}

main { 
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
}



.item01,
.item02,
.item03 {
    display: flex;
    width: 32.7%;
    margin-top: 10px;
    margin-left: 10px;
}

.item04,
.item05 {
    width: 48%;
    margin-top: 10px;
    margin-left: 10px;
}

.item04 {
    background-color: #304648;
    color: #F2F2F2;
}

.item04 :first-child {
    text-align: center;
}

.item04 :last-child {
    margin-left: 10px;
    margin-right: 10px;
}

.item06,
.item07 {
    width: 48%;
    margin-top: 10px;
    margin-left: 10px;
}

.item07 {
    background-color: #304648;
    color: #F2F2F2;
}

.item07 :first-child {
    text-align: center;
}

.item07 :last-child {
    margin-left: 10px;
    margin-right: 10px;
}

footer {
    margin-top: 10px;
    background-color: #446164;
    width: 100%;
    color: #F2F2F2;
    list-style: none;

}

.footer-content {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 10px;
}

.footer-content :first-child   {
    margin-right: 10px;
}