body {
    font-family: 'Arial', sans-serif;
    background-color: #000; /* Black background */
    color: #fff; /* White text color */
    margin: 0;
    padding: 0;
    min-height: 100vh; /* Use min-height to fill at least the viewport height */
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column; /* Stack flex items vertically */
}

.container {
    text-align: center;
    padding: 20px; /* Add some padding */
    box-sizing: border-box; /* Include padding and border in the element's total width and height */
}

.logo {
    max-width: 100%; /* Make logo responsive */
    height: auto; /* Maintain aspect ratio */
    margin-bottom: 20px; /* Space between logo and text */
}

h1 {
    font-size: 2rem; /* Use relative size for scalability */
    margin: 0.5em 0; /* Add some margin for spacing */
}

p {
    color: #ccc; /* Lighter grey for the paragraph */
    font-size: 1rem; /* Use relative size for scalability */
    margin: 0.5em 0; /* Add some margin for spacing */
}

/* Responsive styles */
@media (max-width: 768px) {
    .logo {
        max-width: 80%; /* Smaller logo on tablet and mobile */
    }
    h1 {
        font-size: 1.5rem; /* Smaller text on tablet and mobile */
    }
    p {
        font-size: 1rem; /* Adjust text size if necessary */
    }
}

@media (max-width: 480px) {
    .logo {
        max-width: 90%; /* Even smaller logo on mobile */
    }
    /* You can further adjust font sizes and container padding here if needed */
}
