*{
    box-sizing: border-box;
}

.jumbotron {
    min-height: 600px;
    padding-top: 2rem;
    background-color: #65CCB8;
    display: grid;
    place-items: center;
    align-content: center;
}

#about {
    min-height: 600px;
    padding: 40px 0;
    display: grid;
    place-items: center;
    background-color: #65CCB8;
}
#about .container {
    box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px;
    border-radius: 10px;
    background: rgb(43,215,217);
    background: linear-gradient(132deg, rgba(193,255,215,1) 0%, rgba(216,233,168,1) 100%);
    max-width: 700px;
}

/* https://codingyaar.com/bootstrap-profile-card-1/ */
.card {
    min-height: 18rem;
    margin-top: 2em;
    padding: 1.5em 0.5em 0.5em;
    border-radius: 2em;
    text-align: center;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    transition: 0.3s;
}
.card img {
    width: 65%;
    border-radius: 50%;
    margin: 0 auto;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.card:hover {
    box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px;
}

/* END of https://codingyaar.com/bootstrap-profile-card-1/ */

#member {
    padding: 40px 0;
    min-height: 800px;
    display: grid;
    place-items: center;
    background-color: #65CCB8;
}

#feedback {
    display: grid;
    place-items: center;
    min-height: 500px;
    background-color: #65CCB8;
}

#feedback .container {
    box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px;
    border-radius: 10px;
    background: rgb(43,215,217);
    background: linear-gradient(132deg, rgba(193,255,215,1) 0%, rgba(216,233,168,1) 100%);
    max-width: 800px;
    padding: 50px 0;
}

@media screen and (max-width: 770px) {
    .jumbotron {
        min-height: 400px;
    }

    #about {
        min-height: 400px;
    }

    #about #description {
        font-size: 12px;
    }

    #about .container {
        max-width: 400px;
    }
}
