@import url("https://fonts.googleapis.com/css2?family=Inter&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Righteous&display=swap");

html,
body {
    font-family: "Inter", sans-serif;
    background-color: black;
    color: white;
}

.container {
    margin: 10vh;
    top: 50%;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.name {
    font-family: "Righteous", cursive;
    font-size: 20rem;
    background: linear-gradient(
        45deg,
        #f17c58,
        #e94584,
        #24aadb,
        #27dbb1,
        #ffdc18,
        #ff3706
    );
    background-size: 600% 100%;
    animation: gradient 16s linear infinite;
    animation-direction: alternate;
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.tag {
    font-size: 1.3rem;
}

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}
