/* Global Layout */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #e9ecef;  /* Light background for the page */
}

/* Container for Flex Layout */
.container {
    display: flex;
    flex-direction: column;  /* Stacks children vertically for smaller screens */
    min-height: 100vh;
}

/* Main Content Styling */
.main-content {
    flex: 1; /* This makes the main content take up the remaining space */
    padding: 20px;
    background-color: #f1f1f1;
    margin-top: 10px;
}

/* Titles and Text */
h1 {
    color: #333;
    font-size: 2rem;
    margin-bottom: 20px;
}

h2 {
    font-size: 1.5rem;
    margin-top: 20px;
}

p {
    font-size: 1rem;
    color: #555;
}

/* Add hover effects for clickable spans */
span {
    font-weight: bold;
    cursor: pointer;
}

span:hover {
    text-decoration: underline;
    color: #007bff;
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
    .container {
        flex-direction: column;  /* Stack elements vertically on smaller screens */
    }
    
    .main-content {
        padding: 10px;
    }

    h1 {
        font-size: 1.5rem;
    }

    h2 {
        font-size: 1.2rem;
    }
}

