*{
    margin: 0;
    padding: 0;
}
html{
    height: 100%;
}
body{
    height: 20%;
    background-image: url("websiteback.jpg");
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-position: center;
}
nav{
    height: 90%;
    width: 100%;
    background-color: white;

    box-shadow: 0px 2px 4px rgb(0, 0, 0, 0.1444);
}

nav ul{
    float: right;
}
nav li{
    display: inline-block;
    margin-top: 30px;
    margin-right: 40px;
}
nav li a{
    font-family: Arial, Helvetica, sans-serif;
    font-size: 24px;
    color: #333;
    text-decoration: none;
}
nav ul li .active{
    color: grey;
}

nav img{
    height: 60px;
    position: absolute;
    top: 7%;
    transform: translate(0%, -50%);
    margin-left: 20px;
}