@font-face {
    font-family: 'NugoSansLight';
    src: url(/font/NugoSansLight.ttf);
}
body {
    background-color: black;
    color: white;
    font-family: 'NugoSansLight';
    margin: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center; 
    flex-direction: row;
    gap: 5vw;
}


.names-container {
    position: absolute;
    top: 25vh;
    left: 70vw;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
}

.names {
    display: inline-block;
    position: relative;
    transition: text-shadow 0.3s ease-in-out;
    font-size: 55px;
    -webkit-animation: flicker 3s infinite;
    z-index: 2; 
    text-decoration: none;
    color: white;
    position: relative;
    display: inline-block;
}


.names::after {
    content: "";
    position: absolute;
    bottom: 0.25rem;
    left: 0;
    width: 100%;
    height: 2px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease-in-out;
}

.names:hover {
    text-shadow: 0 0 15px white, 0 0 15px white;
}

.names:hover::after {
    transform: scaleX(1);
}

.names .text {
    position: relative;
    display: inline-block;
}


.names .text::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 2px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease-in-out;
}

.bio {
        -webkit-animation: flicker 3s infinite;
         z-index: -1;
        transition: text-shadow 0.3s ease-in-out;
}

.bio:hover {
        text-shadow: 0 0 15px white, 0 0 15px white;
}

.img {
    pointer-events: none;
    position: absolute;
    bottom: 20vh;
    left: 50vw;
    transform: translateX(-50%);
    width: auto;
    height: 80vh;
    filter: grayscale(100%);
    transform-origin: top center;
    animation: swing 4s ease-in-out infinite;
    user-drag: none;
    -webkit-user-drag: none;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}

@keyframes swing {
    0%   { transform: translateX(-50%) rotate(-5deg); }
    50%  { transform: translateX(-50%) rotate(5deg); }
    100% { transform: translateX(-50%) rotate(-5deg); }
}

.footer {
    position: fixed;
    left: 0;
    bottom: 0;
    margin-bottom: 10px;
    width: 100%;
    color: #fff;
    text-align: center;
}