/* Reset default margin and padding */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;  /* Light background color */
}

.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    text-align: center;
    padding: 20px;
}

.logo img {
    max-width: 100%;
    height: auto;
    max-height: 200px;  /* Limit the height of the logo */
}

.text p {
    font-size: 1.2rem;
    color: #333;
    margin-top: 20px;
    max-width: 600px;  /* Limit the width of the text */
    line-height: 1.6;
}

/* Responsive text size */
@media (max-width: 768px) {
    .text p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .logo img {
        max-height: 150px;  /* Smaller logo on small screens */
    }
    
    .text p {
        font-size: 0.9rem;  /* Slightly smaller text on small screens */
        padding-left: 10px;
        padding-right: 10px;
    }
}
