/* Global Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body Styles */
body {
    font-family: 'Poppins', sans-serif; 
    background: linear-gradient(135deg, rgba(173, 216, 230, 0.9), rgba(144, 238, 144, 0.9)); 
    color: #333;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    text-align: center;
    position: relative; 
}

/* Side Illustrations */
.side-illustration {
    position: absolute;
    top: 0;
    width: 200px; /* Set width for both left and right illustrations */
    height: 100%; 
    background-size: contain; 
    z-index: 1; 
}

.side-illustration.left {
    left: 0; 
    background: url('assign-05/image-01.png') no-repeat center center; /* Add left illustration */
}

.side-illustration.right {
    right: 0; 
    background: url('assign-05/image-02.png') no-repeat center center; /* Add right illustration */
}

/* Title Styles */
.title {
    background: linear-gradient(135deg, rgba(135, 206, 235, 0.8), rgba(173, 216, 230, 0.8)); 
    padding: 20px; 
    border-radius: 15px; 
    margin-bottom: 30px; 
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2); 
}

.title h1 {
    color: white; 
    font-size: 4.5em; 
    font-family: 'Comic Sans MS', cursive, sans-serif; 
}

/* Subheading Styles */
h3 {
    font-size: 1.8em; 
    color: #555; 
    margin-bottom: 30px; 
    font-family: 'Comic Sans MS', cursive, sans-serif; 
}

/* Navigation Styles */
.nav {
    margin-top: 20px; 
    background: linear-gradient(135deg, rgba(240, 255, 240, 0.9), rgba(255, 255, 255, 0.9)); 
    padding: 30px; 
    border-radius: 15px; 
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2); 
}

.nav h2 {
    font-size: 2.5em; 
    color: #333; 
    margin-bottom: 10px; 
    font-family: 'Comic Sans MS', cursive, sans-serif; 
}

.nav ul {
    list-style: none; 
    padding: 0; 
}

.nav li {
    margin: 15px 0; 
}

.nav a {
    text-decoration: none; 
    color: #0073e6; 
    font-size: 1.4em; 
    transition: color 0.3s ease; 
    font-family: 'Comic Sans MS', cursive, sans-serif; 
}

.nav a:hover {
    color: #0056b3; 
}

/* Responsive Styles */
@media (max-width: 768px) {
    .title h1 {
        font-size: 2.8em; 
    }

    h3 {
        font-size: 1.5em; 
    }

    .nav h2 {
        font-size: 1.8em; 
    }

    .nav a {
        font-size: 1.2em; 
    }

    .side-illustration {
        width: 100px; 
    }
}
