/* General body styling */
body {
    margin: 0;
    padding: 0;
    background-color: #000000; /* Black background for the whole page */
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh; /* Ensure it takes at least full viewport height */
    font-family: Arial, sans-serif; /* Or your preferred font */
}

/* Container to help with centering (optional, body can do it too) */
.container {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* The main rectangle with gradient and rounded corners */
.gradient-rectangle {
    width: 80%; /* Or a fixed width like 400px */
    max-width: 500px; /* Maximum width */
    padding: 40px;
    background: linear-gradient(to bottom, #333333, #1a1a1a); /* Dark grey to a darker grey/off-black */
    /* You can adjust the black point: linear-gradient(to bottom, #444444, #000000); for dark grey to pure black */
    border-radius: 15px; /* Rounded corners */
    border: 1px solid #555555; /* Thin grey border */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2); /* Optional subtle shadow */
    display: flex;
    flex-direction: column; /* Stack logo and text vertically */
    align-items: center; /* Center items horizontally */
    text-align: center;
}

/* Styling for the logo image */
.logo {
    max-width: 60%; /* Adjust as needed, e.g., 150px */
    height: auto;   /* Maintain aspect ratio */
    margin-bottom: 20px; /* Space between logo and text */
    /* Ensure your logo image has a transparent background if it's a PNG */
}

/* Styling for the text "Incidental Creative" */
.logo-text {
    font-size: 1.5em; /* Adjust size as needed */
    color: #aaa;   /* White text */
    margin: 0;        /* Remove default paragraph margin */
    /* background-color: transparent; is default for text, so not explicitly needed */
}

/* Responsive adjustments (optional) */
@media (max-width: 600px) {
    .gradient-rectangle {
        width: 90%;
        padding: 25px;
    }
    .logo {
        max-width: 50%;
        margin-bottom: 15px;
    }
    .logo-text {
        font-size: 1.2em;
    }
}
