.contact-viewport {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-container {
    text-align: center;
}

.f-label {
    display: block;
    letter-spacing: 0.3em;
    font-size: 12px;
    margin-bottom: 10px;
    opacity: 0.5;
}

.contact-container h1 {
    font-size: clamp(60px, 10vw, 120px);
    font-weight: 900;
    margin-bottom: 80px;
}

.contact-links {
    display: flex;
    justify-content: center;
    gap: 60px;
}

.contact-item {
    color: var(--fg);
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.item-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    opacity: 0.6;
}

.contact-item i {
    font-size: 32px;
}

.contact-item:hover {
    transform: translateY(-10px);
    opacity: 0.5;
}

@media (max-width: 600px) {
    .contact-links {
        flex-direction: column;
        gap: 40px;
    }
}