body {
    background-color: black;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    color: white; /* This makes the text white */
}

.content-container {
    text-align: center;
}

h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem; /* Slightly larger for better hierarchy */
    font-weight: 400; /* Regular weight */
    margin: 0;
}

.tagline {
    font-family: 'Lato', sans-serif; /* Using a clean, modern font for contrast */
    font-size: 0.9rem; /* Smaller size */
    font-weight: 300; /* Light weight */
    letter-spacing: 0.2em; /* Spacing out the letters for an elegant look */
    text-transform: uppercase; /* ALL CAPS for a professional feel */
    margin-top: 10px; /* Space between the title and tagline */
    color: rgba(255, 255, 255, 0.7); /* Slightly faded white for subtlety */
}