body {
    font-family: 'Poppins', sans-serif;
    background-color: #f4f4f4;
    color: #333;
}

header {
    background-size: cover;
    background-position: center;
    color: #000000;
    padding: 100px 0; /* Adjust as needed */
    text-align: center;
}

header h1 {
    font-size: 3rem;
    font-weight: 600;
}

nav ul {
    padding: 0;
}

nav ul li a {
    color: #181818;
    font-weight: 500;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #ffc107;
}

section {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin-bottom: 20px;
}

section h2 {
    font-size: 2rem;
    font-weight: 600;
    color: #343a40;
    margin-bottom: 1.5rem;
}

.card {
    transition: transform 0.3s ease;
}

.card:hover {
    transform: scale(1.03);
}

footer {
    background-color: #343a40;
    color: #f8f9fa;
    padding: 1rem 0;
}

.social-links {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}


.social-icon:hover {
    transform: scale(1.1); /* Slightly enlarge on hover */
}


nav div .btn {
    width: 64px;
    height: 52px;
    background-color: transparent; 
}

.social-icon {
    width: 50x; /* Adjust size as needed */
    height: auto; /* Maintain aspect ratio */
    fill: #333; /* Adjust color if necessary */
}

.navdiv {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.navdiv div {
    margin: 2vh;
}

.profile-image {
    width: 100px;
    height: 100px;
    overflow: hidden;
    border-radius: 50%;
}

.profile-image img {
    width: 100%;
    object-fit: cover;
}