@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap');

html, body {
    margin: 0;
    padding: 0;
    overscroll-behavior: none;
}

body {
    font-family: "Nunito", sans-serif;
    background: url("background.png") repeat;
}

.min-h-full {
    min-height: 100vh;
}

.flex-h-center {
    display: flex;
    justify-content: center;
}

.flex-both-center {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.flex-wrap {
    flex-wrap: wrap;
}

.relative {
    position: relative;
}

.m-auto {
    margin: auto;
}

.mt-12 {
    margin-top: 12px;
}

.mt-16 {
    margin-top: 16px;
}

.mt-24 {
    margin-top: 24px;
}

.mt-48 {
    margin-top: 48px;
}

.py-10 {
    padding: 10px;
}

.ln-h-22 {
    line-height: 22px;
}

.text-fs-16 {
    font-size: 16px;
}

.text-center {
    text-align: center;
}

.page-full-wrap {
    width: 680px;
    padding-bottom: 176px;
    z-index: 10;
}

.display-image {
    display: block;
    width: 96px;
    height: 96px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 1px 2px rgb(0 0 0 / 12%),0 2px 4px rgb(0 0 0 / 12%),0 4px 8px rgb(0 0 0 / 12%),0 8px 16px rgb(0 0 0 / 12%),0 16px 32px rgb(0 0 0 / 12%);
}

.page-title {
    margin-bottom: 0;
    font-size: 18px;
    font-weight: 700;
}

.page-bioline {
    font-size: 14px;
    font-weight: 500;
}

.page-text-font {
    font-family: "Nunito", sans-serif;
    text-transform: none;
}

.page-text-color {
    color: #000;
}

.page-social {
    position: relative;
    display: block;
    margin: 0 12px 12px;
    cursor: pointer;
    transition: transform 0.1s ease-in-out;
}

.page-social:hover {
    transform: scale(1.1);
}

.social-icon-anchor {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.page-item-wrap {
    margin: 16px 0;
    border-radius: 30px;
    transition: transform 0.15s cubic-bezier(.17, .67, .29, 2.71);
}

.page-item-wrap:last-child {
    margin-bottom: 0;
}

.page-item-wrap:hover {
    transform: scale(1.015);
}

.page-item {
    position: absolute;
    inset: 0;
    border: 2px solid transparent;
    border-radius: 30px;

    background:
            linear-gradient(#eaeaea, #eaeaea) padding-box,
            linear-gradient(
                    45deg,
                    #fb0094,
                    #0000ff,
                    #00ff00,
                    #ffff00,
                    #ff0000,
                    #fb0094
            ) border-box;

    background-size: 100% 100%, 400% 100%;
    background-position: 0 0, 0 0;

    /* hide the gradient border */
    background-image:
            linear-gradient(#eaeaea, #eaeaea),
            none;
}

.page-item-wrap:hover .page-item {
    background-image:
            linear-gradient(#eaeaea, #eaeaea),
            linear-gradient(
                    45deg,
                    #fb0094,
                    #0000ff,
                    #00ff00,
                    #ffff00,
                    #ff0000,
                    #fb0094
            );

    animation: steam-border 6s linear infinite;
}

@keyframes steam-border {
    from { background-position: 0 0, 0 0; }
    to   { background-position: 0 0, 400% 0; }
}
.page-item-each {
    position: relative;
    z-index: 10;
    box-sizing: border-box;
    min-height: 60px;
    overflow: hidden;
    color: #000;
    font-size: 16px;
    font-weight: 400;
    text-decoration: none;
    text-transform: none;
    border-radius: 30px;
}

.link-each-image {
    position: absolute;
    left: 9px;
    width: 43px;
    height: 43px;
    object-fit: cover;
    border-radius: 30px;
}

.item-title {
    word-break: break-word;
    display: block;
    font-weight: bold;
}
.smalltitle {
    font-weight: normal;
    font-size: 14px;
}
@media (max-width: 768px) {
    .page-full-wrap {
        width: 90%;
    }
}
