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

/* Body Styling */
body {
    font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 200; /* Extra-light weight */
    background-color: #ffffff; /* White background */
    color: #000000; /* Black text */
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Centered Content */
.centered-content {
    text-align: center;
}

h1 {
    font-size: 2.5rem;
    font-weight: 200; /* Extra-light font weight */
    color: #000000; /* Black text */
    line-height: 1.2;
}

/* Underline Animation */
.underline {
    height: 1.5px;
    width: 0;
    background-color: #000000; /* Black underline */
    margin: 0 auto;
    animation: expand-shrink 4s infinite;
}

/* Animation Keyframes */
@keyframes expand-shrink {
    0%, 100% {
        width: 0;
    }
    50% {
        width: 95%; /* Adjust width to match name size */
    }
}