body {
    font-family: 'Raleway', sans-serif;
    display: flex;
    align-items: center;
    flex-direction: column;
}

#hero-container {
    display: flex;
    width: 70%;
}

#sec-one {
    width: 50%;
    display: flex;
    justify-content: center;
    flex-direction: column;
}
#sec-two {
    width: 50%;
}

h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 10px;
}
h2 {
    font-size: 24px;
    font-weight: 300;
}
h3 {
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 32px;
    margin-top: 58px;
}
p {
    line-height: 130%;
}
#btn {
    margin-top: 24px;
    background-color: #1DB16A;
    width: 250px;
    text-align: center;
    padding: 10px 0; 
    font-weight: 300;
    border-radius: 5px;
}

#about-container {
    width: 70%;
}

#about-container p {
    margin-bottom: 16px;
}

#quote-container {
    width: 70%;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    flex-wrap: wrap;
}

.quote-card {
    width: 250px;
    background-color: #1DB16A;
    color: #f9f9f9;
    padding: 16px;
    border-radius: 10px;
    margin-bottom: 16px;
}
.quote-header {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}

.img-quote {
    width: 50px;
    margin-right: 16px;
}
h4 {
    font-size: 18px;
    font-weight: 600;
}

footer {
    height: 50px;
    width: 100%;
    margin-top: 58px;
    background-color: #1DB16A;
}


@media(max-width: 1199.98px){  
    img {
        width: 400px;
    }
}
@media(max-width: 991.98px){
    #hero-container, #about-container, #quote-container {
        width: 80%;
    }
    #sec-one, #sec-two {
        width: 100%;
    }   
    img {
        width: 300px;
    }
}
@media(max-width: 767.98px){
    #hero-container {
        width: 90%;
        flex-direction: column-reverse;
        justify-content: center;
        text-align: center;
    }
    #about-container, #quote-container {
        width: 90%;
    }
    .quote-card {
        flex-grow: 1;
    }
    #sec-one, #sec-two {
        width: 100%;
    }
    #sec-one {
        align-items: center;
    }
    img {
        width: 200px;
    }
    btn {
        width: 200px;
    }
}

