body {
    padding: 0;
    margin: 0;
    font-family: 'Maven Pro';
    box-sizing: box-shadow;
}

.buttonBody {
    display: flex;
    flex-direction: row;
    justify-content: center;
    justify-items: center;
    align-items: center;

}



.header {
    height: 90vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    justify-items: center;
    align-items: center;
    background: #fff;
}

.download {
    display: flex;
    flex-direction: row;
}

.logo img {
    height: 35vh;
    width: 35vh;
}

.header button {
    background: #2c3e50;
    bordeR: none;
    letter-spacing: 5px;
    padding: 12px;
    margin-top: 48px;
    font-family: 'Maven Pro';
    display: flex;
    flex-direction: row;
    justify-items: center;
    align-items: center;
    margin-bottom: 24px;
    margin-left: 12px;
    margin-right: 12px;
    border-radius: 24px;
    color: #000;
    text-decoration: none;
    font-size: larger;
}


.header button img {
    height: 10vh;
    width: 15vh;
}

.header button a {
    font-size: x-large;
}


@media (width: 750px) {
    .intro h2 {
        font-size: 3em;
    }

    .intro button {
        letter-spacing: 3px;
    }



    .header button {
        background: #000;
        bordeR: none;
        letter-spacing: 5px;
        padding: 4px;
        margin: 6px;
        border-radius: 24px;
        font-size: small;
    }

    .header img {
        height: 12px;
        width: 12px;
    }

    .download {
        flex-direction: column;
    }

    .logo img {
        height: 30vh;
        width: 30vh;
    }
}

.body-section {
    width: 100%;
    background: #eee;
    height: 100vh;
}

.body-content {
    padding: 50px;
    text-align: center;
}

.body-content .holder {
    width: 20%;
    background: #fff;
    display: inline-block;
    margin: 0 20px;
    height: auto;
}

.body-content .holder p {
    padding: 5px 10px;
    line-height: 20px;
    text-align: left;
}


.body-content a:hover {
    background: #1abc9c;
}

.testimonial {
    margin-top: 4%;
    padding: 10px;
    text-align: left;
}

.testimonial p {
    text-align: center;
    font-size: 2.3em;
    font-style: italic;
}

.testimonial section {
    margin: 20px 0;
    line-height: 2em;
    font-size: 1.5em;
}

@media (max-width: 1000px) {

    .body-section {
        height: auto;
    }

    .body-content {
        padding: 10px 0;
    }

    .download {
        flex-direction: column;
    }

    .body-content .holder {
        width: 50%;
        margin: 20px 0;
    }

    .body-content .testimonial {
        margin-top: 2%;
        width: 100%;
        padding: 0;
    }

    .body-content .testimonial p {
        font-size: 1.3em;
    }

    .body-content .testimonial section {
        line-height: 1.5em;
        font-size: 1em;
        padding: 0 10px;
    }
}




.social-links {

    text-align: center;
    background: #2c3e50;
}

.social-links a {
    display: inline-block;
    padding: 20px;
    color: #fff;
    text-decoration: none;
    transition: all 0.5s ease-in-out;
}


.social-links a:hover {
    transform: scale(1.2);
    color: #fab385;
}

.header button:hover {
    transform: scale(1.05);

}

@media (max-width: 500px) {

    .social-links {
        padding: 0;
    }

    .download {
        flex-direction: column;
        margin: 24px;
        padding: 0px;
    }



    .social-links a {
        display: block;
    }

    .social-links h4 {
        font-size: large;
    }

    .social-links a:hover {
        background: #fab385;
        transform: scale(1);
        color: #fff;
    }

    .header button {
        padding: 0px;
        font-size: medium;
    }

    .header a {
        padding: 0px;
    }

    .header .a img {
        padding: 0px;
        height: 5vw;
        width: 5vw;
    }


}