body, html {
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
    text-align: center;
    background-color: black;
    color: white;
}

.welcome-img {
    max-width: 200px;
    border-radius: 10px;
    margin-top: 20px;
}

#container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 30px auto;
}

.project-link {
    display: inline-block;
    margin: 20px;
    padding: 15px 30px;
    text-decoration: none;
    color: white;
    background: #444;
    border: 2px solid white;
    border-radius: 5px;
    font-size: 18px;
    transition: background 0.3s, transform 0.3s;
}

.project-link:hover {
    background: #666;
    transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 599px) {
    body {
        background-color: #222;
    }
}

@media (min-width: 600px) {
    body {
        background-color: #111;
    }
}
/* Team Section Styles */
#team-section {
    margin: 50px auto;
    padding: 20px;
    max-width: 800px;
}

#team-section h3 {
    margin-bottom: 30px;
    color: white;
    font-size: 24px;
}

.team-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin: 0 auto;
}

.team-member {
    position: relative;
    display: inline-block;
}

.circle-link {
    display: block;
    text-decoration: none;
    position: relative;
    transition: transform 0.3s ease;
}

.circle-link:hover {
    transform: scale(1.05);
}

.circle-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid white;
    display: block;
}

.surname {
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.circle-link:hover .surname {
    opacity: 1;
}

/* Responsive adjustments for team section */
@media (max-width: 599px) {
    .team-container {
        gap: 20px;
    }
    
    .circle-img {
        width: 100px;
        height: 100px;
    }
    
    .surname {
        font-size: 12px;
        bottom: -22px;
    }
}