aside {
    position: fixed;
    top: 0;
    right: -100vw;
    display: flex;
    flex-direction: column;
    gap: 60px;
    width: 100%;
    height: 100vh;
    padding: 8px 16px;
    background-color: var(--neutralsneutral-800);
    transition: right 0.4s ease;
    z-index: 1000;
}

aside .header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

aside .header img {
    width: auto;
    height: 44px;
}

aside button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background-color: transparent;
    color: #fff;
    font-size: 24px;
}

aside ul {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}

aside li {
    width: 100%;
}

aside a {
    font-weight: var(--body-large-font-weight);
    font-size: var(--body-large-font-size);
    line-height: var(--body-large-line-height);
    position: relative;
    width: 100%;
    padding: 10px;
    font-family: var(--body-large-font-family);
    color: var(--neutralsneutral-100);
    letter-spacing: var(--body-large-letter-spacing);
    white-space: nowrap;
    font-style: var(--body-large-font-style);
    cursor: pointer;
}