html {
    font-size: 24px;

    @media(min-width: 360px) {
        font-size: 28px;
    }

    @media(min-width: 768px) {
        font-size: 40px;
    }

    @media(min-width: 1024px) and (min-height: 1200px) {
        font-size: 52px;
    }
}

body {
    text-align: center;
    font-family: "JetBrains Mono", monospace;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    line-height: 1.5;
    margin: 0;
    padding: 0;
    background-color: #f5f5f5;
    color: #333;
}

a {
    color: #0074d9;
    text-decoration: none;
    transition: color 0.2s;
}

a:hover {
    color: orange;
    text-decoration: underline;
}

.quickstart {
    margin-top: 2.5rem;
}

.quickstart h4 {
    display: block;
    background: none;
    color: inherit;
    margin-block: 0.5rem;
}

p {
    letter-spacing: -0.0065rem;
}

h1+p {
    position: relative;
    bottom: 2rem;
    font-size: 0.5rem;
}

h2+p {
    position: relative;
    bottom: 1.65rem;
    font-size: 0.5rem;
}

h3 {
    padding-inline: 0.2rem;
    display: inline;
    background: #e52e71;
    color: #ffff;
    margin: 0;
    border-radius: 0.2rem;
}

h4 {
    color: #cecece;
}

.animated-link h2 {
    display: inline-block;
    background: linear-gradient(90deg, #ff8a00 0%, #e52e71 50%, #ff8a00 100%);
    background-size: 200% auto;
    color: #fff;
    padding: 0.5em 1em;
    margin-block: 2rem;
    border-radius: 8px;
    animation: shine 5s linear infinite alternate;
    transition: transform 0.2s;
}

.animated-link:hover h2 {
    transform: scale(1.05);
}

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

    100% {
        background-position: 200% 50%;
    }
}