*{
    background-color: #000;
}
.about-header{
    text-align: center;
    color: #FFF;
    font-family: "SF Pro Display";
    font-size: 20px;
}
.team-members{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
    gap: 100px;
    padding: 20px;
}
.member-row{
    display: flex;
    flex-direction: row;
    justify-content: center;
}
@media(min-width: 768px){
    .member-row{
        gap: 150px;
    }
}
@media(min-width: 900px){
    .member-row{
        gap: 200px;
    }
}
.member img{
    width:88px;
    height:88px;
}
.member h3{
    font-size:32px;
}
.member a{
    color: #808080;
}

.quote-container{
    display: flex;
    justify-content: space-evenly;
    padding-top: 50px;
    padding-bottom: 50px;
    border-radius: 12px;
    width: 65%;
    border: 1px solid #3B3B3B;
    margin-left: 18vw;
    margin-top: 100px;
    box-shadow: 0 10px 30px 0 rgba(255, 102, 67, 0.34);
    gap: 50px;
}
@media(min-width: 0px){
    .quote-container{
        flex-direction:column;
        justify-content: center;
        align-items: center;
    }
}
@media(min-width: 615px){
    .quote-container{
        flex-direction:row;
    }
}
.quote-container img{
    width: 113px;
    height: 177px;
}
#quote h1{
    color: #FFF;
    font-family: "SF Pro Display";
    font-size: 40px;
    font-style: italic;
    font-weight: 300;
    line-height: normal;
    gap: 50px;
    width: 39vw;
}
#quote p{
    background: linear-gradient(90deg, #FF8181 0%, #FFBB68 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 121.49%;
}