#primary-nav .menu-btn {
    display: block;
    width: 28px;
}

#content {
    background-color: var(--thoxt-white);
}

.spinner-container {
    display: none;
}

.about-menu {
    display: none;
    justify-content: flex-start;
    position: fixed;
    align-items: center;
    gap: 5px;
    flex-direction: column;
    width: 300px;
    height: fit-content;
    top: -420px;
    left: 0;
    background-color: rgb(255, 255, 255, .75);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid #ccc;
    box-shadow: inset 2px 2px 4px var(--shadow-color);
    cursor: pointer;
    overflow: hidden;
    opacity: 0;
    transition: top 0.4s ease-in-out, opacity 0.4s ease;
    z-index: 100;
}

/* When visible */
.about-menu.show {
    display: flex;
    top: 35px;
    opacity: 1;
}

.about-menu-item {
    width: inherit;
    padding: 5px;
    padding-left: 10%;
    line-height: 45px;
    border-bottom: 1px solid #ccc;
    cursor: pointer;
}

.about-menu-item:hover {
    font-size: 1.3rem;
    background-color: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid var(--thoxt-lemon);
}

.about-menu-item a {
    width: 100%;
}

.profile-menu-item {
    display: flex;
    gap: 10px;
    align-items: center;
}

.about-button {
    position: relative;
    background-color: transparent;
    border: none;
    font-size: 1.6rem;
    margin: 10px 0;
    background-image: radial-gradient(circle at 50% 50%, transparent, rgb(244, 255, 48, 0.5));
    background-size: 200% 200%;
    animation: moveGradient 7s ease infinite alternate;
}

.about-button::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 15px;
    background-image: radial-gradient(circle at 50% 50%, transparent, rgb(48, 244, 255, 0.6));
    background-size: 200% 200%;
    animation: moveGradient 10s ease infinite alternate-reverse;
    animation-delay: 1s;
    pointer-events: none;
}

@keyframes moveGradient {
    0% {
        background-position: 0% 0%;
    }

    50% {
        background-position: 100% 100%;
    }

    100% {
        background-position: 0% 100%;
    }
}

.help-div {
    padding: 10px;
}

@media screen and (max-width: 1000px) {
    .about-menu {
        width: 100%;
        gap: 0;
    }
}