/* General Styling */
body {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
    background: #121212; /* Dark background */
    color: #fff; /* White text for contrast */
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

/* Introduction Section */
#introduction {
    text-align: center;
}

.logo-container {
    animation: float 3s ease-in-out infinite;
    margin-bottom: 20px;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.logo {
    width: 150px; /* Adjust size */
    height: 150px;
}

h1 {
    font-size: 2.5rem;
    margin: 10px 0;
    color: #00aaff; /* Highlight color */
}

button {
    padding: 12px 24px;
    font-size: 1.2rem;
    cursor: pointer;
    border: none;
    border-radius: 5px;
    background: #007bff; /* Primary button color */
    color: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: background 0.3s ease, transform 0.2s ease;
}

button:hover {
    background: #0056b3; /* Darker shade for hover */
    transform: scale(1.05); /* Slight zoom effect */
}

.watermark {
    margin-top: 30px;
    font-size: 0.9rem;
    color: #aaa; /* Light gray watermark text */
    font-style: italic;
}
