/* Basic styling for the entire page */
body, html {
    height: 100%; /* Ensures the body covers the full viewport height */
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #f0f2f5; /* Light gray background */
    color: #333; /* Dark gray text color */
}

/* Container for the welcome message */
.welcome-container {
    display: flex;
    flex-direction: column;
    justify-content: center; /* Center content vertically */
    align-items: center; /* Center content horizontally */
    text-align: center;
    height: 100%; /* Take up the full height of the body */
    padding: 20px;
}

/* Styling for the main heading */
.welcome-heading {
    font-size: 2.5rem; /* Large font size */
    color: #2c3e50; /* Dark blue heading color */
    margin-bottom: 0.5rem;
}

/* Styling for the welcome message paragraph */
.welcome-message {
    font-size: 1.2rem;
    line-height: 1.6;
    max-width: 600px;
}

/* Responsive adjustments for smaller screens */
@media (max-width: 600px) {
    .welcome-heading {
        font-size: 1.8rem;
    }

    .welcome-message {
        font-size: 1rem;
    }
}
