*
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

nav{
    width: 100%;
    height: 75px;
    line-height: 75px;
    padding: 0px 100px;
    position: fixed;
    background-image: linear-gradient(#0A3A40, #0F5959);
}
nav .logo p
{
    font-size: 30px;
    font-weight: bold;
    float: left;
    color: white;
    cursor: pointer;
    text-transform: uppercase;
}
nav ul
{
    float: right;
}
nav li
{
    display: inline-block;
    list-style: none;
}
nav li a
{
    font-size: 18px;
    text-transform: uppercase;
    padding: 0px 30px;
    color: white;
    text-decoration: none;
}
nav li a:hover
{
    color:#9FC131;
    transition: all 0.3s ease 0s;
}
.content-items img
{
    width: 100%;
    height: 100vh;
    background-size:cover ;
    background-position: center;
}