/* styles.css */

body {
    font-family: 'Arial', sans-serif;
    background-color: #f8f9fa;
}

.navbar {
    margin-bottom: 50px;
}

#about img {
    max-width: 200px;
    border: 5px solid #343a40;
}

h1, h2, h5 {
    color: #343a40;
}

h1 {
    font-weight: bold;
}

h2 {
    margin-bottom: 20px;
}

.list-group-item {
    background: #ffffff;
    border: 1px solid #ddd;
    margin-bottom: 10px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.list-group-item:hover {
    background-color: #e9ecef;
}

#projects .card {
    border: 1px solid #343a40;
}

#projects .card:hover {
    background-color: #e9ecef;
}

#contact a {
    color: #007bff;
    text-decoration: none;
}

#contact a:hover {
    text-decoration: underline;
}
