
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #121212;
    color: #e0e0e0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
    line-height: 1.6;
}

.content-container {
    text-align: center;
    max-width: 600px;
    width: 100%;
    padding: 40px;
    background-color: #1e1e1e;
    border: 1px solid #2c2c2c;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.name-title {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #00aaff;
}

.bio-text {
    font-size: 1.125rem;
    color: #a0a0a0;
    margin-bottom: 2rem;
}

.social-links a {
    color: #e0e0e0;
    font-size: 1.75rem;
    margin: 0 1rem;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-links a:hover {
    color: #00aaff;
    transform: translateY(-3px) scale(1.1);
}

@media (max-width: 600px) {
    .content-container {
        padding: 30px 25px;
        border: none;
    }

    .name-title {
        font-size: 1.75rem;
    }

    .bio-text {
        font-size: 1rem;
    }

    .social-links a {
        font-size: 1.5rem;
        margin: 0 0.75rem;
    }
}
