/* Main */
body,
p,
a {
    font-family: 'Roboto', sans-serif;
}

a:link {
    color: white;
}

a:visited {
    color: white;
}

a:hover {
    color: white;
}

.main {
    position: relative;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.hero {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 75vw;
    height: calc(75vw * (1050 / 2660));
}

p {
    color: white;
    font-size: 1em;
}

body {
    background: black;
}

/* Team Section */
.team-section {
    padding: 20px;
    text-align: center;
    max-width: 100%;
}

.team-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.team-member {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 150px;
}

.team-member img {
    width: 100%;
    height: auto;
    border-radius: 50%;
    background-color: #2fd4f4;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
}

.team-member h3 {
    font-size: 1rem;
    margin-top: 8px;
    margin-bottom: 4px;
    color: white;
    font-family: 'Roboto', sans-serif;
}

.team-member p {
    font-size: 0.8rem;
    color: #ccc;
}

/* Responsive Adjustments */
@media (max-width: 600px) {
    .team-container {
        gap: 15px;
    }

    .team-member {
        width: 120px;
    }

    .team-member h3 {
        font-size: 0.9rem;
    }

    .team-member p {
        font-size: 0.7rem;
    }
}