nav {
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    z-index: 1;
    background-color: transparent;
    color: white;
}
.nav-inner {
    display: flex;
    align-items: center;
    justify-content: start;
    position: relative;
}
.logo {
    display: flex;
    align-items: center;
    justify-content: start;
    padding: 0;
    margin: 0;
}
.logo-link {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 8px;
    margin: 0;
    padding: 0;
    text-decoration: none;
    color: white;
}
.logo-icon {
    width: 100%;
    height: 100%;
    max-width: 50px !important;
    max-height: 50px !important;
    padding: 0;
    margin: 0;
}
.website-name {
    font-size: 28px;
}
.menu-button {
    display: none;
    align-items: center;
    justify-content: center;
    height: 100%;
}
.menu-button> i {
    font-size: 21px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
    width: 100%;
    font-size: 21px;
    cursor: pointer;
}
.navLinkList, .socialLinkList {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0;
}
.navLinkListItem {
    list-style-type: none;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0;
    width: 100%;
    height: 100%;
}
.navLink {
    text-decoration: none;
    color: white;
    font-size: 12px;
    margin: 0;
    width: 100%;
    height: 100%;
}

@media only screen and (max-width: 576px) {

    nav {
        padding: 0 !important;
    }
    .nav-inner {
        padding: 0 !important;
    }
    .website-name {
        font-size: 18px;
    }
    .navLinkList {
        position: fixed;
        top: 0;
        z-index: 3;
        width: 100vw !important;
        min-height: 100vh !important;
        justify-content: start;
        flex-direction: column;
        background-color: white;
        transform: translateX(100vw);
    }
    .navLinkList.active {
        transform: translateX(0);
    }
    .menu-button {
        display: flex;
        height: 100px;
        background-color: black;
    }
    .menu-button> i {
        display: flex;
        color: white;
    }
    .navLinkListItem {
        width: 100%;
        flex: 1;
    }
    .navLink {
        font-size: 21px;
        width: 100%;
        height: 100%;
        text-align: center !important;
    }

}