html,
body {
    height: 100%;
    margin: 0;
}

body {
    font-family: "Inter Tight", sans-serif;
    font-optical-sizing: auto;
    background-color: #f8f9fa;
}

.container {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 2rem;
}

.logo {
    font-size: clamp(4rem, 8vw, 4.5rem);
    margin: 0;
    font-family: "JetBrains Mono", monospace;
}

h2 {
    font-size: clamp(1.5rem, 4vw, 2rem);
}

p {
    font-size: clamp(1rem, 2.5vw, 1.125rem);
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: #ffffff;
    border-radius: 50%;
    text-decoration: none;
    color: black;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.social-link svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.social-link.linkedin:hover {
    background-color: #0077b5;
    color: white;
}

.social-link.twitter:hover {
    background-color: #000000;
    color: white;
}
