.hero {
    min-height: 100vh;
    padding: 20px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.hero-name {
    font-size: 8rem;
    font-weight: bolder;
    text-shadow: 5px 5px 0 #f687b3, 10px 10px 0 #f89344, 15px 15px 0 #68d391, 20px 20px 0 #62b2ed;
    display: inline-block;
    text-align: center;
}

.hero-description {
    font-size: 20px;
    font-weight: normal;
    background: #222 -webkit-gradient(linear, left top, right top, from(#222), to(#222), color-stop(.5, #fff)) 0 0 no-repeat;
    background-size: 150px;
    color: rgba(255, 255, 255, 0.3);
    -webkit-background-clip: text;
    background-clip: text;
    animation-name: text_shine;
    animation-duration: 5s;
    animation-iteration-count: infinite;
    text-shadow: 0 0 0 hsla(0, 0%, 100%, .5);
    text-align: center;
}

.hero-link {
    margin-top: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 10px 20px;
    text-align: center;
    color: white;
    font-weight: normal;
    background-color: transparent;
    text-decoration: none;
    border-radius: 100px;
    transition: 0.6s;
}

.hero-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transition: 0.6s;
}

@media only screen and (max-width: 600px) {
    .hero-name {
        font-size: 6rem;
    }

    .hero-description {
        font-size: 16px;
    }
}

@keyframes text_shine {

    0%,
    10% {
        background-position: -1000px;
    }

    20% {
        background-position: 0 0;
    }

    90% {
        background-position: 100% 0;
    }

    100% {
        background-position: 1000px;
    }
}