/* Reset some default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    font-family: 'Arial', sans-serif;
    background-color: #f0f0f0;
}

/* Center content vertically and horizontally */
.container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    background: linear-gradient(135deg, #6e7aaf, #5d3fd3);
}

/* Style for the welcome message */
.welcome-message {
    text-align: center;
    color: #fff;
    background: rgba(0, 0, 0, 0.6);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    max-width: 600px;
    width: 90%;
}

.welcome-message h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    font-weight: bold;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.welcome-message p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-top: 10px;
}

/* Adding hover effect on the welcome message */
.welcome-message:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: scale(1.05);
    transition: background 0.3s, transform 0.3s;
}

/* Responsive Design: Adjust for mobile */
@media (max-width: 768px) {
    .welcome-message h1 {
        font-size: 2rem;
    }

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

