:root {
    --username-base-font-size: 16px;
    --username-base-width: 393px;
    --username-base-height: 852px;
}

.username-full-container {
    width: 100%;
    height: 100%;
    position: relative;
    background: black;
    overflow: hidden;
    font-size: var(--username-base-font-size);
}

.username-full-container h1,
.username-full-container h2 {
    margin: 0;
}

.username-full-container h1 {
    font-size: 1.75em;
    font-weight: 600;
}

.username-full-container h2 {
    font-size: 0.9375em;
    font-weight: 600;
}

.username-full-container p {
    font-size: 0.9375em;
    color: rgba(255, 255, 255, 0.60);
}

.username-full-image-quip-container {
    display: flex;
    margin-top: 5%;
}

.username-full-image-div {
    width: 42%;
    padding: 5px;
    aspect-ratio: 180 / 245;
    margin-top: 1%;
    margin-bottom: 4%;
    position: relative;
}

.username-full-image-div .clip-path-outline,
.username-full-image-div .clip-path {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.username-full-image-div .clip-path-outline {
    clip-path: polygon(0.134% 100%,
            0.134% 99.775%,
            0.134% 0.106%,
            75.597% 0.106%,
            100% 94.107%);
    background-color: rgba(255, 255, 255, 0.9);
    transform: scale(1.05);
    z-index: 1;
}

.username-title {
    font-size: 0.46em;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.60);
    height: fit-content;
    min-height: 30px;
}

.username-full-image-div .clip-path {
    clip-path: polygon(0.134% 100%,
            0.134% 99.775%,
            0.134% 0.106%,
            75.597% 0.106%,
            100% 94.107%);
    background-color: var(--contents-bg-color);
    z-index: 2;
}

.username-full-image-div .clip-path img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 3;
}

.username-full-quip {
    width: 40%;
    margin-left: 5%;
}

.username-full-tags {
    display: flex;
    gap: 2%;
    margin-top: 5%;
    margin-bottom: 5%;
    align-items: center;
}

.username-full-tag {
    background: white;
    color: black;
    padding: 1% 3%;
    border-radius: 20px;
    font-size: 0.75em;
    /* font-weight: 600; */
}

.username-full-menu {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.60);
    padding-bottom: 2%;
}

.username-full-menu-item {
    font-size: 0.9375em;
    color: rgba(255, 255, 255, 0.60);
    cursor: pointer;
}

.username-full-menu-item.active {
    color: white;
    border-bottom: 2px solid white;
    padding-bottom: 2%;
}

.username-full-menu-content {
    padding-top: 2%;
    display: none;
}

.username-full-menu-content.active {
    display: block;
}

.username-full-grid-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, auto);
    width: 100%;
    gap: 10px;
}

.username-full-grid-item {
    width: 100%;
    padding: 20px;
    text-align: center;
    border: 1px solid black;
    background-color: var(--contents-bg-color);
}