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

/* --- FULL PAGE STYLING --- */
body {
    /* Sets the entire page background to black */
    background-color: black; 
    
    /* Ensures the body takes up 100% of the screen */
    height: 100vh;
    width: 100vw;
    
    /* Flexbox properties to center the content */
    display: flex;
    justify-content: center; /* Horizontal center */
    align-items: center; /* Vertical center */
}

/* --- TEXT STYLING --- */
.center-text p {
    /* Applies the Oswald font you selected */
    font-family: 'Oswald', sans-serif;
    
    /* Text appearance */
    color: white;
    font-size: 2rem; /* Large font size */
    font-weight: 200; /* Bold weight from the font */
    letter-spacing: 0.1rem; /* Adds cool spacing between letters */
    
    /* Optional: Slight text shadow for pop */
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5); 
}