
    body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: calc(100vh - 80px);
    font-family: Lato, Sans-Serif !important;
    }
    
    .navigation {
    display: flex;
    flex-direction: row;
    position: fixed;
    top: 0;
    left: 0;
    width: -webkit-fill-available;
    margin: 0;
    padding: 0 240px;
    background-color: white;
    border-bottom: 1px solid #dddddd;
    height: 80px;
    align-items: center;
    z-index: 10;
    }
    
    .navImageDiv {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: fit-content;
    align-items: center;
    }
    
    .profilePicture {
    height: 60px;
    margin-right: 10px;
    transition: all 0.7s ease;
    }
    
    .profilePicture:hover {
    transform: translateY(-5px);
    }
    
    .navimage {
    display: flex;
    height: 80px;
    align-items: center;
    }
    
    .navimage img {
    height: 50px;
    transform: translateY(5px);
    transition: transform 0.7s ease;
    }
    
    .navimage img:hover {
    animation: flip 3s forwards;
    transform: translateY(-5px);
    }
    
    .navlist {
    display: flex;
    flex-direction: row;
    padding: 0;
    margin: 0 0 0 20px;
    list-style: none;
    width: -webkit-fill-available;
    align-items: center;
    justify-content: flex-end;
    height: 80px;
    }
    
    .navlist li a {
    display: flex;
    align-items: center;
    font-size: 18px;
    color: black;
    font-weight: bold;
    padding: 0 5px;
    margin: 0;
    text-decoration: none;
    height: 45px;
    position: relative;
    }
    
    .navlist li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 5px;
    background-color: #4780B6;
    transition: width 0.4s ease;
    }

    .navlist li a:hover::after {
    width: 80%;
    }
    
    .currentPage::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0 !important;
    width: 100% !important;
    height: 5px;
    background-color: #4780B6;
    }
    
    @media screen and (max-width: 1400px) {
    
    .navigation {
    padding: 0 8%;
    }
    
    }
    
    @media screen and (max-width: 920px) {
    
    .navigation {
    padding: 0 20px;
    }
    
    }
    
    @media screen and (max-width: 820px) {
    
    .navigation {
    justify-content: space-between;
    padding: 0 30px;
    }
    
    }
    
    @keyframes navFlip {
    0% {
    transform: rotate(0deg);
    }
    100% {
    transform: rotate(-180deg);
    }
    }
    
    @keyframes navUnFlip {
    0% {
    transform: rotate(-180deg);
    }
    100% {
    transform: rotate(0deg);
    }
    }
    