#main {
    width: 100%;
    background-color: #999999;
    padding-top: 60px;
}

#about_box {
    width: 1860px;
    background-color: #ffffff;
    margin: 0 auto;
    border-radius: 20px;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
    padding: 1px;
}

#about_box h1 {
    font-size: 90px;
    color: #016E95;
    text-align: center;
    font-weight: normal;
    margin: 30px;
}

#about_box p {
    width: 1730px;
    margin: 0px auto;
    font-size: 36px;
}

.member_box {
    width: 440px;
    height: 600px;
    background-color: #ffffff;
    border-radius: 20px;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
    cursor: pointer;
}

.member_box img {
    width: 380px;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
    margin: 30px;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
}

.member_box h1 {
    text-align: center;
    margin: 0;
    font-size: 30px;
    color: #016E95;
}

.member_box p {
    text-align: center;
    font-size: 20px;
    width: 90%;
    margin: auto;
}

#teamcontainer {
    display: grid;
    grid-template-columns: 472px 472px 472px 472px;
    grid-auto-rows: 620px;
    padding: 30px;
}

@media only screen and (max-width: 900px) {
    #main {
        width: 100%;
        background-color: #999999;
        padding-top: 5vw;
    }

    #about_box {
        width: 90vw;
        background-color: #ffffff;
        margin: 0 auto;
        border-radius: 4vw;
        box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
    }

    #about_box h1 {
        font-size: 10vw;
        color: #016E95;
        text-align: center;
        font-weight: normal;
    }

    #about_box p {
        width: 80%;
        margin: 0px auto;
        font-size: 5vw;
    }

    #about_box a {
        display: block;
        width: max-content;
        text-decoration: none;
        color: #ffffff;
        background-color: #016E95;
        padding: 15px;
        border-radius: 35px;
        font-size: 50px;
        margin: 40px auto;
        box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
    }

    .member_box {
        width: 90vw;
        height: 130vw;
        background-color: #ffffff;
        border-radius: 4vw;
    }

    .member_box img {
        width: 80%;
        height: 80vw;
        object-fit: cover;
        border-radius: 3vw;
        margin: 10%;
    }

    .member_box h1 {
        text-align: center;
        margin: 0;
        font-size: 10vw;
        color: #016E95;
    }

    .member_box p {
        text-align: center;
        font-size: 5vw;
        text-transform: capitalize;
    }

    #teamcontainer {
        display: grid;
        grid-template-columns: 90vw;
        grid-auto-rows: 140vw;
        padding: 5vw;
    }
}