body {
    background-color: black;
    color: white;
    font-family: Helvetica, sans-serif;
    text-align: center;
    margin-top: 100px;
}
.links {
    display: flex;
    flex-direction: column;
    width: 50%;
    margin: 0 auto;
    border-radius: 20px;
    height: 200px;
    padding: 50px 50px;
    gap: 20px;
}
.links a {
    color: white;
    font-size: 20px;
    text-decoration: none;
}
h1 {
    font-size: 60px;
}
.uhe {
    display: inline-block;
    position: relative;
    padding-bottom: 0.15rem;
}
.uhe::before {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 0%;
    height: 1.5px;
    background-image: linear-gradient(45deg, rgba(131,58,180,1) 0%, rgba(253,29,29,1) 50%, rgba(252,176,69,1) 100%);
    transition: width 0.10s ease-out;
}
.uhe:hover::before {
    width: 100%;
    left: 0;
    right: auto;
}
.special {
    background: -webkit-linear-gradient(45deg, rgba(131,58,180,1) 0%, rgba(253,29,29,1) 50%, rgba(252,176,69,1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}