* {
    box-sizing: border-box;
    font-family: "Source Sans Pro", sans-serif;
}

.section1 {
    background-color: rgb(144, 144, 255);
    display: grid;
    place-content: center;
    height: 90vh;
}

.section1 h1 {
    text-align: center;
}

div {
    border-radius: 20px;
    margin: 20px;
}

#apple-shelf {
    background-color: rgb(255, 138, 138);
    height: 100px;
    width: 70vw;
    margin-bottom: 15px;
    display: grid;
    place-content: center;
    font-size: 40px;
}

#orange-shelf {
    background-color: rgb(255, 206, 115);
    height: 100px;
    width: 70vw;
    display: grid;
    place-content: center;
    font-size: 40px;
}

.section2 {
    background-color: rgb(255, 144, 144);
    min-height: 90vh;
    max-height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* overflow: hidden; */
}

.section2 h1 {
    margin-top: 40px;
    text-align: center;
    margin: 40px 2px;
}

#container {
    height: auto;
    min-width: 80vw;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.team-img {
    height: 230px;
    border-radius: 15%;
    margin: 15px;
}