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

body {
    font-family: 'Poppins', sans-serif;
    background-color: #111; /* Dark background */
    color: #fff; /* White text */
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.container {
    max-width: 600px; /* Ensures the content does not stretch too wide */
    padding: 20px;
}

h1 {
    font-size: 64px;
    font-weight: 600;
    margin-bottom: 10px; /* Adds subtle space between name and job title */
}

p {
    font-size: 32px;
    color: #b0b0b0; /* Muted color for job role text */
    margin-bottom: 40px; /* Space between job title and construction message */
}

.construction-message {
    font-size: 20px;
    color: #dcdcdc;
    background-color: rgba(255, 255, 255, 0.1); /* Subtle background for message */
    padding: 10px 20px;
    border-radius: 12px;
    display: inline-block;
}
