/* Reset some default styles */
body, h1, h2, p {
    margin: 0;
    padding: 0;
}

:root {
    --primary-color: #f5f6fa;
    --secondary-color: #dcdde1;
    --accent-color: #74b9ff;
    --background-color: #1a1a1a;
    --text-color: #f5f6fa;
    --card-bg: #2d3436;
    --link-color: #74b9ff;
    --link-hover: #0984e3;
}

body {
    font-family: 'SF Mono', 'Roboto Mono', monospace;
    line-height: 1.6;
    background-color: var(--background-color);
    color: var(--text-color);
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 20px 20px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

a {
    color: var(--link-color);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

a:hover {
    color: var(--link-hover);
}

a::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--link-hover);
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform 0.3s ease;
}

a:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

main {
    padding: 2rem;
    max-width: 600px;
    width: 100%;
}

.profile-container {
    display: flex;
    align-items: center;
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    max-width: 500px;
    margin: 0 auto;
}

@media (max-width: 600px) {
    .profile-container {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
        align-items: center;
    }

    .profile-container .profile-image {
        margin: 0 0 1.5rem 0;
    }

    .profile-details {
        align-items: center;
    }
}

.profile-image {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 2.5rem;
    border: 3px solid var(--accent-color);
}

.profile-details {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

h1 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

h2 {
    font-size: 1.2rem;
    color: var(--secondary-color);
    font-weight: 400;
}

  