@import url('https://fonts.googleapis.com/css2?family=Abel&family=Lobster&display=swap');

.quoteWrapper {
    width: 100vw;
    text-align: center;
    padding-left: 25%;
    padding-right: 25%;
    margin-top: 5%;
    margin-bottom: 5%;
    word-wrap: break-word;
    font-family: 'Lobster', cursive;
}

.quoteWrapper h2 {
    font-family: 'Lobster', cursive;
}

.featuredWrapper {
    width: 100vw;
    height: max-content;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}
.MuiPaper-root.flex.flex-col {
    width: 100vw;
    height: max-content;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

.featuredWrapper h1 {
    font-family: 'Abel', sans-serif;
    margin-bottom: 15px;
}

.MuiPaper-root.flex.flex-col h1 {
    font-family: 'Abel', sans-serif;
    margin-bottom: 15px;
}

.MuiPaper-root.flex.flex-col p {
    font-family: 'Abel', sans-serif !important;
}

.card {
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
    transition: 0.3s;
    width: 20%;
    height: max-content;
    border-radius: 5px;
    font-family: 'Abel', sans-serif;
    padding-left: 2px;
}

.card h4 b {
    font-family: 'Abel', sans-serif;
}

.card:hover {
box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
}

img {
border-radius: 5px 5px 0 0;
}

.container {
padding: 2px 16px;
}

.square_btn{
    position: relative;
    display: inline-block;
    font-weight: bold;
    padding: 0.5em 1em;
    text-decoration: none;
    border-left: solid 4px #668ad8;
    border-right: solid 4px #668ad8;
    color: #668ad8;
    background: #e1f3ff;
    transition: .4s;
}

.square_btn:hover {
    background: #668ad8;
    color: #FFF;
}

@media only screen and (max-width: 600px) {
    .featuredWrapper {
        flex-direction: column;
        justify-content: center;
    }

    .MuiPaper-root.flex.flex-col {
        flex-direction: column;
        justify-content: center;
    }

    .card {
        width: 75%;
        padding-bottom: 10px;
    }

    .MuiPaper-root.flex.flex-col img {
        width: 65vw !important;
    }
}