h3 {
    font-size: 14px;
    margin: 0;

}

h1 {
    font-size: 24px;

}

h2 {
    font-size: 26px;
    margin: 0px;
}

body {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
}

main {

    /* max-width: 700px; */

}

/* .middle {
    background-color: #313131;
    color: white;
} */

.content {
    display: flex;
    flex-direction: column;
    gap:30px;
    align-items: center;
    padding: 20px 0;
    margin-bottom: 40px;
}

section {
    display: flex;
    background-color: white;
    flex-wrap: wrap;
    padding: 50px 5px;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 100%;
    /* border: 2px solid #E7E6E6;
    border-radius: 10px; */
    /* box-shadow: 10px 5px 5px #F8F8F8; */
}

.section-img {
    width: 80px;
}

.text {
    min-width:200px;
    font-size: 16px;
    flex: 1;
    max-width: 500px;
    line-height: 1.5;
    padding: 0 10px;

}

.text h2 {
    text-align: center;
    margin-bottom: 40px;
}




em {
    color: #006B58;
    font-family: 'Barlow Medium', sans-serif;
    font-style: normal;
}

.cta {
    background-color: #00FFD1;
    border-radius: 5px;
    padding: 10px 40px;
    font-size: 18px;
    font-family: 'Barlow Medium', sans-serif;
    text-decoration: none;
    color: black;
}

.cta:hover {
    background-color: #A1FFEE;
}

.build-icon {
    width: 15px;
    margin-right: 10px;
}

@media only screen and (min-width:500px) {

    .text h2 {
        font-size: 36px;
        text-align: left;
    }

    .text {
        font-size: 18px;
    }

    h3 {
        font-size: 20px;
    }

    h1 {
        font-size: 36px;
    }

    section {
        padding: 40px;
        gap: 40px;
        flex-direction: row;
    }

    .section-img {
        width: 150px;
    }

    .cta span {
        font-size: 24px;
    }

    .build-icon {
        width: 18px;
    }

    }