/* Make the body take full height and center everything */
body {
    margin: 0;                    /* remove default margin */
    height: 100vh;                /* full viewport height */
    display: flex;
    justify-content: center;       /* horizontal centering */
    align-items: center;           /* vertical centering */
    font-family: Arial, sans-serif; /* optional clean font */
}

.center-container h1 {
    margin: 0;
    font-size: 2.5rem; /* optional, adjust size */
}

/* Stack name and info row vertically */
.center-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;                    /* space between h1 and info row */
}

/* Row with email on the left and links on the right */
.info-row {
    display: flex;
    align-items: center;           /* vertical alignment */
    gap: 30px;                     /* space between email and links */
}

/* Links side by side */
.link-row {
    display: flex;
    gap: 15px;                     /* space between links */
}

/* Style the links */
.link-row a {
    color: black;
    text-decoration: none;
    font-weight: bold;
    padding: 5px 10px;            /* optional padding to look like buttons */
    border: 1px solid black;      /* optional border for button feel */
    border-radius: 4px;           /* rounded corners */
    transition: all 0.2s ease;    /* smooth hover */
}

.link-row a:hover {
    background-color: black;
    color: white;
}