body {
    font-family: 'Arial', sans-serif;
    background-color:rgb(20, 15, 20);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    margin: 0;
    flex-direction: column;
}
#text {
    font-family: 'Playfair Display', serif;
    text-decoration: none;
    font-size: 2.5rem;
    font-weight: bold;
    letter-spacing: 3px;
    font-style: italic;
    border-top: 1.2px solid #000;
}
#text {
    animation: background-pan 10s linear infinite;
    background: linear-gradient(to left,
            rgb(130, 251, 102),
            rgb(238, 23, 238),
            rgb(51, 120, 248),
            rgb(130, 251, 102));
    background-size: 200%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
@keyframes background-pan {
    from {
        background-position: 0% center;
    }

    to {
        background-position: -200% center;
    }
}
#text:hover {
    border-top: 1.2px solid #fff;
}
.start {
    transform: translateX(-250px);
}
.end {
    transform: translateX(250px);
}
.number {
    font-size: 1rem;
    letter-spacing: 1.32px;
    transition: all 2ms ease-in-out;
}
.number:hover {
    animation: background-pan 10s linear infinite;
    background: linear-gradient(to left,
            rgb(130, 251, 102),
            rgb(238, 23, 238),
            rgb(51, 120, 248),
            rgb(130, 251, 102)
    );
    background-size: 200%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
#container {
    transform: translateX(-220px);
    display: flex;
    flex-direction: column;
    gap: 15px;
    cursor: pointer;
}
/* #years {
    font-size: 1.5rem;
    font-weight: bold;
} */