nav {
    background-color: rgba(255, 255, 255, 0.609);
    position: sticky;
    top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 72px;
    max-height: 72px;
    width: 100%;
}

nav #phone-view {
    display: none;
    justify-content: center;
    align-items: center;
}

nav #desktop-view {
    display: flex;
    justify-content: center;
    align-items: center;
}

nav #desktop-view img {
    height: 72px;
    cursor: pointer;
}

nav #desktop-view ul {
    list-style-type: none;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

a {
    color: #000;
    text-decoration: none;
}

nav #desktop-view ul li {
    border-top: 1px solid #000;
    transition: outline 0.1s ease-in;
    transition: color 0.1s ease-in;
    margin: 20px;
    cursor: pointer;
    color: inherit;
}

nav #desktop-view ul li:hover {
    color: #4c7a94;
    border-top: 3px solid #dddddd;
    margin-top: 17px
}
nav #desktop-view ul li a {
    height: 100%;
    width: 100%;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media screen and (max-width: 800px) {
    nav {
        position: static;
    }

    nav #phone-view {
        display: flex;
    }

    nav #burger-menu {
        transform: rotate(0deg);
        transition: transform .2s ease-in;
    }

    nav .menu {
        display: none;
        width: 100%;
        position: absolute;
        z-index: 100;
        top: 72px;
        right: 0;
        font-size: 20px;
    }

    nav .menu ul {
        text-align: center;
        background-color: rgba(255, 255, 255, 0.609);
        list-style-type: none;
        padding: 10px;
    }

    nav .menu ul li {
        padding: 10px;
    }

    nav #desktop-view {
        display: none;
    }
}