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

body {
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: #002265;
    color: white;
    min-height: 100vh;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 2rem;
}

.content {
    max-width: 900px;
    width: 100%;
}

.name-header {
    margin-bottom: 4rem;
}

.name-header h2 {
    font-family: 'Space Mono', monospace;
    font-size: 2rem;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.main-text {
    margin-bottom: 3rem;
}

.main-text h1 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1.5rem;
}

.main-text p {
    font-size: 1.8rem;
    line-height: 1.4;
}

.highlight {
    color: white;
    text-decoration: underline;
    text-decoration-thickness: 2px;
    position: relative;
    display: inline;
    transition: opacity 0.3s ease;
}

.highlight::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    width: 0;
    height: 2px;
    background-color: white;
    transition: width 0.4s ease;
}

.highlight:hover::after {
    width: 100%;
}

/* Font size specific adjustments */
.main-text .highlight {
    text-underline-offset: 6px;
}

.main-text .highlight::after {
    bottom: 0px;
}

.description .highlight {
    text-underline-offset: 3px;
}

.description .highlight::after {
    bottom: 0px;
}


.description {
    margin-bottom: 2rem;
}

.description p {
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 700px;
}

.social-links {
    display: flex;
    gap: 2rem;
    align-items: center;
    font-size: 2rem;
}

.social-links a {
    color: white;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.social-links a:hover {
    transform: scale(1.1);
    opacity: 0.7;
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-text h1 {
        font-size: 1.8rem;
    }

    .main-text p {
        font-size: 1.3rem;
    }

    .description p {
        font-size: 1rem;
    }

    .name-header {
        margin-bottom: 2rem;
    }

    .name-header h2 {
        font-size: 1.5rem;
    }

    .social-links {
        gap: 1.5rem;
        font-size: 1.5rem;
    }
}
