.main, .panel {
    text-align: center;
}

.team-container {
    /* display: flex;
    justify-content: center;
    gap: 20px;
    margin: 20px; */

    display: grid;
    gap: 50px;
    grid-template-columns: auto auto auto;
    column-count: 3;
    align-items: center;
    align-self: center;
    justify-content: center;
    align-content: center;
}

.team-member a {
    text-decoration: none;
}

.team-img {
    width: 100px;
    height: auto;
    border-radius: 50%;
}

.sponsor-img {
    width: 100px;
    height: auto;
}

h3 {
    margin: 10px 0 5px;
}

p {
    margin: 0;
}

#money {
    color: green;
}

.container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 20px;
}

.awards-section {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.awards-section h1 {
    color: #333;
    text-align: center;
}

.awards-section p {
    color: #666;
    text-align: center;
}

.awards-section ul {
    list-style-type: none;
    padding: 0;
}

.awards-section ul li {
    background-color: #e7f3fe;
    border: 1px solid #b3d4fc;
    border-radius: 4px;
    padding: 10px;
    margin: 5px 0;
}

.awards-section img {
    display: block;
    width: 100%;
    height: auto;
    margin: 20px auto;
    border-radius: 8px;
}

/* Media query for smaller screens */
@media (max-width: 768px) {
    .container {
        grid-template-columns: 1fr;
    }
}

.socials {
    margin-top: 10vh;
}

.socials iframe {
    width: 35%;
    aspect-ratio: 16/9;
    height: auto;
}


/*
OUTREACH BOXES
*/

.outreach-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 20px;
}

.events-section {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.events-section h1 {
    color: #333;
    text-align: center;
}

.events-section p {
    color: #666;
    text-align: center;
}

.events-section img {
    display: block;
    width: 100%;
    height: auto;
    margin: 20px auto;
    border-radius: 8px;
}

/* ROBOT SECTIONS */
.robot-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start; /* Align the items to the top */
    list-style-type: none;
}

.robot-section {
    flex: 1;
    list-style-type: none;
}

.robot-section ul li {
    list-style-type: none;
}

.robot-section img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    margin-top: 20px;
    margin-bottom: 20px;
}
