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

html, body {
    height: 100%;
}

body {
    background-color: #0a0a0a;
    color: #f0f0f0;
    font-family: 'Manrope', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
}

main {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
    padding: 2rem;
}

.link-title {
    text-decoration: none;
    color: inherit;
}

.link-title h1 {
    font-weight: 800;
    font-size: clamp(3rem, 12vw, 9rem);
    letter-spacing: -0.02em;
    line-height: 1;
    color: #f0f0f0;
    transition: color 0.2s ease;
}

.link-title:hover h1 {
    color: #ffffff;
}

.link-by {
    text-decoration: none;
    color: inherit;
}

.link-by span {
    font-weight: 200;
    font-size: clamp(0.75rem, 2vw, 1rem);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #888;
    transition: color 0.2s ease;
}

.link-by:hover span {
    color: #bbb;
}
