* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Poppins, sans-serif;
    background-color: #1f1925;
    color: white;
    display: grid;
    place-items: center;
    min-height: 100vh;
}

h1 {
    font-size: 2.5rem;
    text-transform: uppercase;
    line-height: 1;
    font-weight: 900;
}

h1 > span {
    background: linear-gradient(270deg, #ff6ec4, #7873f5, #4ade80, #ff6ec4);
    background-size: 800% 800%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientMove 10s ease infinite;
}

h2 {
    font-size: 1.5rem;
    color: #c1a0e2;
}

.links {
    list-style: none;
    margin-top: 20px;
    display: flex;
    gap: 15px;
}

.links a {
    color: inherit;
    text-decoration: none;
    font-family: Poppins, sans-serif;
    font-weight: 600;
}

.links a:hover {
    text-decoration: underline;
}

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

@media screen and (max-width: 600px) {
    main {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;

        text-align: center;
    }

    h2 {
        font-size: 1.1rem;
        padding: 0 0.5rem;
    }
}