@import url("./styles.css");

#overlayCaption {
    top: 60%;
    left: 10vw;
}

.founders h1 {
    color: #233544;
    font-size: 4rem;
    font-weight: 600;
    text-align: center;
}


.founders .description {
    color: black;
    font-weight: 400;

}

h2 {
    text-align: left;
}

.founder-container h2 {
    color: #233544;
    font-size: 2rem;
}


.section p {
    color: black;
}

ul {
    list-style-type: disc; /* Restores default bullets */
}

.section {
    background: white;
    padding:  2vw 10vw;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.founders-list {
    display: flex;
    flex-direction: row;
    justify-content: space-around;    
    align-items: center;
}
.founder-container {
    display: flex;
    margin: 2rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    flex-direction: row;
    gap: 1.5rem;
}
.founder-container img {
    width: 360px;
    height: 360px;
    border-radius: 50%;
    object-fit: cover;
}
.founder-container div {
    flex: 1;
    min-width: 240px;

}

.intern-container, .feature-container {
    display: flex;
    align-items: center;
    padding: 10px 0;
    gap: 10%;
    border-bottom: 2px solid #233544;
    justify-content: center;

}

.intern-container h2, .feature-container {
    width: 15rem;
}

.intern-container img, .feature-container img {
    width: 240px;
    height: 240px;
    border-radius: 50%;
    object-fit: cover;
}

.intern-info p, .feature-info {
    margin: 0;
    font-size: 1rem;
}

.interns h1, .features h1 {
    color: #233544;
    font-size: 2.5rem;
    font-weight: 600;
    text-align: center;
}

.intern-info h2, .feature-info h2 {
    color: #233544;
    font-size: 1.5rem;
}