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

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 20px;
    background: linear-gradient(to right, #f0f4c3, #cfd8dc);
    color: #333;
}

/* Main heading styles */
h1 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 2.5em;
    color: #4caf50;
}

/* Subheading styles */
h2 {
    text-align: center;
    margin: 10px 0;
    font-size: 2em;
    color: #1976d2;
}

/* Container for the about section */
div {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin-bottom: 20px;
}

/* Section heading styles */
h3 {
    color: #3f51b5;
    margin-bottom: 10px;
}

/* List styles */
ul {
    list-style-type: none;
    padding: 0;
}

li {
    margin: 10px 0;
    padding: 10px;
    background-color: #e3f2fd;
    border-radius: 5px;
    transition: background-color 0.3s;
}

li:hover {
    background-color: #bbdefb;
}

/* Link styles */
a {
    text-decoration: none;
    color: #2196f3;
    font-weight: bold;
}

a:hover {
    text-decoration: underline;
    color: #0d47a1;
}

/* Footer styles */
footer {
    margin-top: 20px;
    font-size: 0.9em;
    color: #666;
    text-align: center;
}
