body {
    background-color: #000000;
    color: #ffffff;
    margin: 0;
    padding: 0;
    height: 100vh;
    position: relative;
}

.title {
    position: absolute;
    top: 15%;
    left: 50%;
    transform: translateX(-50%);
    font-family: "SF Pro Display", "SF Pro Text", -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 600;
    font-size: 4.5rem;
    letter-spacing: -0.02em;
    text-decoration: underline;
    text-decoration-thickness: 4px;
    text-underline-offset: 8px;
}

.content {
    position: absolute;
    top: 35%;
    left: 25%;
    font-family: 'Source Code Pro', monospace;
    font-size: 1.1rem;
    color: #e5e5e5;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.projects-link:link,
.projects-link:visited {
    color: #e5e5e5;
}

.projects-link {
    display: inline-block;
    padding: 0.2rem 0.6rem;
    margin-left: -0.6rem;
    border: 2px solid transparent;
    cursor: pointer;
    transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.projects-link:hover {
    color: #000000;
    background-color: #ffffff;
    border-color: #ffffff;
}

.icons {
    display: flex;
    gap: 1.5rem;
    margin-top: 1rem;
}

.icons a {
    color: #ffffff;
    font-size: 1.25rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.icons a:hover {
    color: #888888;
}

@media (max-width: 768px) {
    .title {
        font-size: 3.5rem;
    }
    .content {
        left: 10%;
    }
}
