* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Play", sans-serif;
}

body {
    /* font-weight: 300; */
    /* font-style: normal; */
}



.footer-box {
    background-color: #000000;
    max-height: 200px;
    margin-bottom: auto;
}

.footer-box p {
    font-size: 15px;
    color: grey;
}
/* Container for all team cards */
#teamsContainer {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 20px;
    border-color: #000000;
}

/* Individual team card styling */
.team-card {
    display: flex;
    flex-direction: column;
    width: 600px; /* Adjust width as needed */
    height: 300px; /* Adjust height as needed */
    background-color: rgb(255, 0, 0);
    border-radius: 20px;
    border-color: #000000;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3);
    padding: 20px;
    text-align: center;
    overflow: hidden;
}

/* Image styling inside the team card */
.team-card img {
    width: 100%;
    height: 180px; /* Adjust height as needed */
    /* object-fit:fill; */
    border-radius: 10px;
    margin-bottom: 15px;
}

/* Team name styling */
.team-name {
    font-size: 40px;
    font-weight: bold;
    color: rgb(255, 255, 255);
    margin-bottom: 10px;
}

/* Additional text styling */
.text {
    font-size: 16px;
    color: rgb(0, 0, 0);
    font-size: large;
    font-weight: bolder;
}










