/* Global Styles */
body {
    font-family: Arial, sans-serif;
    background-color: #f9f9f9; /* Light gray background */
    color: #333;
    margin: 0;
    padding: 0;
}

header {
    background-color: #007bff; /* Blue */
    color: #fff;
    padding: 20px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

header h1 {
    margin: 0;
    font-size: 36px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

nav ul {
    list-style-type: none;
    padding: 0;
    margin: 20px 0;
}

nav ul li {
    display: inline;
    margin-right: 20px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #ffd54f; /* Yellow on hover */
}

.main-content {
    margin: 20px auto;
    width: 80%;
}

section {
    margin-bottom: 40px;
}

section h2 {
    font-size: 28px;
    font-weight: 600;
    color: #007bff; /* Blue */
    margin-bottom: 20px;
    text-align: center;
}

.about-me img {
    border-radius: 50%;
    margin-bottom: 20px;
}

.social-icons {
    margin-top: 20px;
}

.social-icons a {
    color: #007bff; /* Blue */
    font-size: 24px;
    margin-right: 10px;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #ffd54f; /* Yellow on hover */
}

footer {
    background-color: #007bff; /* Blue */
    color: #fff;
    padding: 20px;
    text-align: center;
    margin-top: 40px;
    box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.1);
}

footer p {
    margin: 0;
}
