*{
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
}
html{
    height: 100%;
    }
body{
    height: 100%;
    background-color: white;
    }
nav{
    height: 90px;
    width: 100%;
    background-color: white;
    box-shadow: 0px 2px 4px rgba(0,0,0,0.144);
    position: relative;
}
nav ul{
    float: right;
    margin-top: 30px;
    display: flex; /* Use flexbox to align items horizontally */
    justify-content: flex-end; /* Align items to the right */
}
nav li{
    display: inline-block;
    margin-right: 20px;
}
nav li a{
    font-size: 16px;
    color: #333;
    text-decoration: none;
}
nav ul li .active{
    color: cornflowerblue;
}
nav img{
    height: 45px;
    position: absolute;
    top: 50%;
    transform: translate(0%, -50%);
    margin-left: 20px;
}
h1 {
  font-size: 20px;
}

/* Media query for smaller screens */
@media only screen and (max-width: 768px) {
    nav ul {
        float: none; /* Remove float for smaller screens */
        text-align: center; /* Center align the navigation items */
        margin-top: 0; /* Remove top margin */
        justify-content: center; /* Center align items */
    }

    nav li {
        display: inline-block; /* Display list items as blocks */
        margin: 10px; /* Add margin for better spacing */
    }

    nav li a {
        font-size: 18px; /* Increase font size for smaller screens */
    }
}