/* Reset some default styles */
body, h1, h2, p, ul, li {
    margin: 10px;
    padding: 10px;
}

body {
    background-color: #f2f2f2;
    font-family: 'Arial', sans-serif; /* Change the font to Arial */
    font-size: 16px;
    line-height: 1.5;
    color: #333;
}

/* Basic styling for the header */
header {
    background: linear-gradient(135deg, #00d5ff, #ff00b6);
    color: #fff;
    text-align: center;
    padding: 20px;
    font-family: 'Helvetica', Arial, sans-serif; /* Change font for header */
}

header h1 {
    font-size: 36px;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-family: 'Pacifico', cursive; /* Change font for the header's h1 */
}

nav ul {
    list-style: none;
    background-color: #2c3e50;
    padding: 10px;
}

nav li {
    display: inline;
    margin-right: 20px;
}

nav a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
    font-family: 'Verdana', sans-serif; /* Change font for navigation links */
}

nav a:hover {
    color: #ff6a00;
}

/* Style sections */
section {
    padding: 40px;
    background-color: rgb(189, 130, 238);
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    margin: 20px;
    font-family: 'Georgia', 'Times New Roman', serif; /* Change font for sections */
}

section h2 {
    color: #3498db;
    font-family: 'Roboto', Arial, sans-serif; /* Change font for section headings */
}

/* Style the footer */
footer {
    background: linear-gradient(135deg, #ff00b6, #ff6a00);
    color: #fff;
    text-align: center;
    padding: 10px;
    font-family: 'Courier New', monospace; /* Change font for footer */
}/* Reset some default styles */
body, h1, h2, p, ul, li {
    margin: 0;
    padding: 0;
}


    body {
        background: linear-gradient(135deg, #3498db, #e74c3c); /* Gradient background from light blue to red */
        font-family: 'Arial', sans-serif;
        font-size: 16px;
        line-height: 1.5;
        color: #333;
    }


/* Basic styling for the header */
header {
    background: linear-gradient(135deg, #ff6a00, #ff00b6);
    color: #fff;
    text-align: center;
    padding: 20px;
    font-family: 'Helvetica', Arial, sans-serif; /* Change font for header */
}



nav ul {
    list-style: none;
    background-color: #2c3e50;
    padding: 10px;
}

nav li {
    display: inline;
    margin-right: 20px;
}

nav a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
    font-family: 'Verdana', sans-serif; /* Change font for navigation links */
}

/* Style sections */
section {
    padding: 40px;
    background-color: #ecf0f1;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    margin: 20px;
    font-family: 'Georgia', 'Times New Roman', serif; /* Change font for sections */
}

section h2 {
    color: #3498db;
    font-family: 'Roboto', Arial, sans-serif; /* Change font for section headings */
    text-shadow: 2px 2px 4px rgb(192, 215, 255),
    2px 2px 4px rgb(192, 220, 255);
}

/* Style the footer */
footer {
    background: linear-gradient(135deg, #ff00b6, #ff6a00);
    color: #fff;
    text-align: center;
    padding: 10px;
    font-family: 'Courier New', monospace; /* Change font for footer */
}

nav a:hover {
    color: #007BFF; /* Change text color on hover to match the header color */
}

/* Style sections */
section {
    padding: 40px;
    background-color: #fff; /* White section backgrounds */
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1); /* Add a subtle box shadow */
    border-radius: 10px; /* Rounded corners */
    margin: 20px;
}

section h2 {
    color: #007BFF; /* Blue section headings */
}

/* Style the footer */
footer {
    background-color: #007BFF; /* Blue footer background */
    color: #fff;
    text-align: center;
    padding: 10px;
}
/* Add a slight scale effect on image hover */
img {
    transition: transform 0.3s ease;
}

img:hover {
    transform: scale(1.1); /* Enlarge the image slightly on hover */
}

/* Add a subtle rotation effect on image hover */
img.rotation {
    transition: transform 0.3s ease;
}

img.rotation:hover {
    transform: rotate(10deg); /* Rotate the image 10 degrees on hover */
}

/* Add a shadow and opacity effect on image hover */
img.shadow {
    transition: box-shadow 0.3s ease, opacity 0.3s ease;
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.2); /* Add a shadow */
    opacity: 0.8; /* Slightly reduce opacity */
}

img.shadow:hover {
    box-shadow: 8px 8px 15px rgba(0, 0, 0, 0.3); /* Increase shadow on hover */
    opacity: 1; /* Restore full opacity on hover */
}
button:hover{
    color: blue;
}
h5{
    margin: 10px;
}
footer {
    background-color: #333;
    overflow: hidden;
}

footer a {
    text-decoration: none;
    padding: 20px;
    text-align: center;
    float: left;
    color: white;
}

.box{
    background: black;
    border-radius: 5px;
}
fieldset{
    background:linear-gradient( #ff0088, #00aeff);
    border: 1px solid #ccc;
}

#about{
    color: #f2f2f2;
}



