/* 1. Reset defaults and center everything on the screen */
body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #121212; /* Sleek dark background */
    color: #ffffff;            /* Crisp white text */
    
    /* These 4 lines do the magic centering alignment */
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh; 
}

/* 2. The container holding your content */
.container {
    text-align: center;
    padding: 20px;
    max-width: 90%;
}

/* 3. Style the text above the image */
.top-text {
    font-size: 2.5rem;
    margin-bottom: 25px;
    font-weight: 600;
}

/* 4. Style the image itself */
.container img {
    max-width: 100%;
    height: auto;
    max-height: 400px; /* Prevents the image from getting too massive */
    border-radius: 12px; /* Smooth, rounded corners */
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5); /* Soft shadow underneath */
}

/* 5. Style the text below the image */
.bottom-text {
    font-size: 1.2rem;
    margin-top: 25px;
    color: #b3b3b3; /* Slightly dimmed white for better look */
}