body {
    background-color: #111;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    min-height: 100vh;
    overflow-y: auto;
    margin: 0;
}


main {
    max-width: 760px;
    margin: 0 auto;
    padding: 24px 16px 48px;
}


h1 {
    font-size: 120px;
    font-weight: 700;
    margin-top: auto;
    margin-bottom: auto;
    margin-left: 10px;
    text-align: center;
}

.section {
    margin-top: 28px;
    
}

.section h2 {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #aaa;
    margin: 0 0 12px 4px;
    text-align: center;
}

.link-item span {
    font-weight: 600;
}

.link-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #171717;
    border: 1px solid #2a2a2a;
    border-radius: 12px;
    padding: 14px 16px;
    color: #eee;
    text-decoration: none;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.05s ease;
}

.link-item:hover {
    background: #1f1f1f;
    border-color: #00ffff;
}