/* styles.css */

/* Global styles */
body {
    font-family: Arial, sans-serif;
    background-color: #f9f9f9;
    color: #333;
    margin: 0;
    padding: 0;
}

/* Header styling */
header {
    background-color: #4CAF50;
    color: white;
    text-align: center;
    padding: 20px;
}

/* Main content styling */
main {
    padding: 20px;
    text-align: center;
}

h1,
h2 {
    font-family: 'Georgia', serif;
}

p {
    font-size: 16px;
    color: #8d8d8d;
}

/* Change the default link color */
a {
    color: #8d8d8d;
    /* Change this to any color */
}

/* Change the color when the user hovers over the link */
a:hover {
    color: #c4c4c4;
    /* Change this to any color */
}

/* Change the color of visited links */
a:visited {
    color: #b1acd6;
    /* Change this to any color */
}

/* Change the color when the link is active (while clicking) */
a:active {
    color: #98e6b9;
    /* Change this to any color */
}

/* Image container styling */
.image-container {
    margin: 20px 0;
}

/* Responsive image class */
.responsive-image {
    max-width: 30%;
    height: auto;
    border: 2px solid #ddd;
    border-radius: 10px;
}

/* Footer styling */
footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 10px;
    position: fixed;
    width: 100%;
    bottom: 0;
}