/* Reset some default styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f5f5f5;
    color: #333;
    transition: background-color 0.3s ease;
}

/* Styling for the header section */
header {
    background-color: #007bff;
    color: #fff;
    text-align: center;
    padding: 40px 0;
    transition: background-color 0.3s ease;
}

/* Styling for h1 */
h1 {
    font-size: 36px;
    margin-bottom: 10px;
}

/* Styling for h2 */
header h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #fff;
}

/* Styling for paragraphs */
p {
    font-size: 18px;
    margin-bottom: 20px;
}

/* Styling for project sections */
.project {
    background-color: #fff;
    margin: 20px;
    padding: 20px;
    border: 1px solid #ccc;
    cursor: pointer;
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease;
}

.project:hover {
    transform: scale(1.05);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

/* Styling for footer section */
footer {
    background-color: #007bff;
    color: #fff;
    text-align: center;
    padding: 10px 0;
}

/* Styling for links */
a {
    color: #000000; /* Link text color */
    text-decoration: none;
}

/* Hover effect for links */
a:hover {
    text-decoration: underline;
}

/* Styling for the About Me section */
#about-me {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
}

/* Show animation for the About Me section */
#about-me.show {
    opacity: 1;
    transform: scale(1);
}

/* Styling for the About Me link */
#aabout-me-link {
    color: #000; /* Black color for the About Me link */
    text-decoration: none;
}

/* Hover effect for the About Me link */
#aabout-me-link:hover {
    text-decoration: underline;
}
