* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
}

html,
body {
    width: 100%;
    height: 100%;
    background-color: #F0ECE0;
}

@font-face {
    font-family: ba2n;
    src: url(/fonts/ba2n.ttf);
}

@font-face {
    font-family: ba4n;
    src: url(/fonts/ba4n.ttf);
}

@font-face {
    font-family: bu6n;
    src: url(/fonts/bu4n.ttf);
}

.underline-hover {
    position: relative;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.underline-hover::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 1.5px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s ease;
}

.underline-hover:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.nav {
    width: 100vw;
    position: fixed;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem;
    font-family: ba2n;
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: #1a1a1a;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-links sup {
    font-size: 0.55em;
    vertical-align: super;
    margin-right: 0.2rem;
}


.char-wrap {
    display: inline-block;
    overflow: hidden;
    vertical-align: bottom;
}

.char {
    display: inline-block;
}

.right h2 {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cap {
    border-bottom: 2px solid #1a1a1a;
    pointer-events: none;
}

.wrapper {
    font-family: ba2n;
    display: flex;
    align-self: flex-start;
    width: 100%;
    gap: 300px;
    padding: 8rem 2rem;
}

.left {
    width: 50%;
    position: sticky;
    top: 8rem;
    height: fit-content;
}

.left h1 {
    font-size: 4rem;
    margin-bottom: 4rem;
}

.wrapper .right {
    width: 60%;
    display: flex;
    gap: 100px;
    flex-direction: column;
}

.right h1 {
    display: flex;
    font-size: 6rem;
    cursor: pointer;
    margin-bottom: 20px;
}

.right .right-wrapper {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 10px 0px 0px 100px;
}

.anim {
    position: fixed;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    height: 500px;
    width: 500px;
    transition: ease 0.3s all;
    opacity: 0;
}

.anim img {
    transition: ease 0.3s all;
    transform: scale(1.2);
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tag {
    display: none;
}

.line-wrap {
    display: block;
    overflow: hidden;
}

.line {
    display: block;
    transform-origin: bottom left;
}
@media (max-width:750px) {

    .nav .profile,
    .nav .cap {
        display: none;
    }

    .nav-links {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .nav {
        font-size: 0.8rem;
    }

    .left {
        position: relative;
        width: 100%;
        top: 2rem;
    }

    .left h2 {
        font-size: 1rem;
    }

    .left h1 {
        text-align: center;
        font-size: 3rem;
    }

    .tag {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 2rem;
        font-family: ba4n;
        font-size: 1rem;
        gap: 1px;
    }

    .tag span {
        border-bottom: 1px solid #1a1a1a;
    }

    .tag sup {
        position: relative;
        top: -0.4em;
        font-size: 0.6em;
    }

    .wrapper {
        flex-direction: column;
        padding: 6rem 1rem;
        gap: 200px;
    }

    .right h1 {
        font-size: 14vw;
    }

    .wrapper .right {
        width: 100%;
        gap: 50px;
    }

    .right .right-wrapper {
        width: 100%;
        padding: 5px 0px 0px 100px;
        gap: 5px;
    }

    .anim {
        display: none;
    }

    .right h2 {
        font-size: 1rem;
    }
}
