/* General Styles */
body {
    font-family: Arial, sans-serif;
    text-align: center;
    background: linear-gradient(135deg, #6a11cb, #2575fc); /* Gradient Background */
    color: white;
    margin: 0;
    padding: 20px;
}

/* Navigation Buttons */
nav {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

nav button {
    background-color: #fff;
    border: none;
    padding: 10px 15px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
    transition: 0.3s;
}

nav button:hover {
    background-color: #ddd;
}

/* Section Styling */
section {
    display: none;
    background: white;
    color: black;
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

/* Ensure Welcome is Visible Initially */
#welcome {
    display: block;
}
