/* Base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #000;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    padding: 0 20px;
}

.container {
    max-width: 900px;
    width: 100%;
    margin: 0;
    padding: 0 20px;
    position: absolute;
    top: 50%;
    left: 80px;
    transform: translateY(-50%);
}


h1 {
    font-size: 78px;
    font-weight: 700;
    margin-bottom: -5px;
    letter-spacing: -1px;
    min-height: 60px;
}

.contact-info {
    margin-bottom: -5px;
    min-height: 25px;
}

.skills {
    font-weight: 400;
    word-spacing: 6px;
    min-height: 25px;
}

a {
    color: #0066cc;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}


.typing-cursor {
    display: inline-block;
    width: 2px;
    height: 1em;
    background-color: #000;
    margin-left: 5px;
    animation: blink 1s infinite;
    vertical-align: middle;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}


.divider {
    width: 1px;
    height: 50px;
    background-color: #000;
    margin-top: 20px;
}


footer {
    margin-top: auto;
    text-align: center;
    padding: 20px;
    position: fixed;
    bottom: 0;
    width: 100%;
    left: 0;
}

.github-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #333;
    font-size: 14px;
    transition: color 0.2s;
}

.github-link:hover {
    color: #0366d6;
    text-decoration: none;
}

.github-link svg {
    fill: currentColor;
}


@media (max-width: 768px) {
    .container {
        left: 40px;
    }
    
    h1 {
        font-size: 36px;
    }
}

@media (max-width: 480px) {
    .container {
        left: 20px;
    }
}