body {
    margin: 0px;
}

header {
    background-image: url("../images/Beach.jpg");
    display:flex;
    justify-content: space-between;
    background-repeat: no-repeat;
    background-size: cover;
}

nav {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-right: 5%;
}

nav > a {
    font-size: 30px;
    text-decoration: none;
    color: black;
    transition: 0.5s;
    background-color: #EF9559;
    padding: 5px;
    border-radius: 4px;
    margin: 15px 3%;
    height: 45px;
    box-shadow: 10px 10px 5px 0px rgba(0,0,0,0.65);
    font-family: 'Oswald', sans-serif;
    width: 180px;
    text-align: center;
    transition: 0.5s;
}

nav > a:hover {
    background-color: #ec8744;
    box-shadow: none;
    letter-spacing: 2px;
}

@media screen and (max-width: 1000px) {

    header {
        align-items: center;
    }

    nav {
        flex-direction: column;
    }

    nav > a {
        height: 30px;
        width: 120px;
        font-size: 25px;
    }
}

@media screen and (max-width: 420px) {
    header > a > img {
        width: 165px;
    }
}