body {
    padding: 0;
    margin: 0;
    background-color: #645DB9;
    font-family: Poppins, sans-serif;
    font-size: 1.2rem;
    color:white;
    min-height: 100vh;;
}

.about-main-section {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    align-items:center;
    flex-grow: 1;
}

.about-text {
    font-size: 3em;
    font-weight: 100;
    margin: 0;
}

.subtitle {
    font-size: 1em;
    width:85%;
    font-weight: 100;
}

.about-action {
    display: flex;
    flex-direction: column;
    position: relative;
    top:3vh;
}

.step-cards {
    width: 90vw;
    margin-left: 2rem;
    height: auto;
}

.cards {
    flex-grow: 1;
    flex-direction: row;
    display: flex;
    align-items: stretch;
    justify-content: flex-end;
}

.card {
    font-size: 1.2em;
    text-align: center;
}

.card img {
    width: 90%;
    margin-top: 0rem;
    border-radius: 10%;
}

.btn {
    width: 5em;
}

@media (max-width:1000px) {
    .about-main-section {
        flex-direction: column;
        justify-content: center;
    }
    .about-action {
        top: 1vh;
    }
    .step-cards {
        margin-left: 0rem;
    }

    .cards {
        margin-left: 0;
    }
    .card img {
        width: 80%;
        padding-right: 0rem;
    }
    .icon img {
        width: 2em;
    }
    .subtitle {
        font-size: .6em;
    }
    .btn {
        font-size: .6em;
        width: 6.5em;
    }
}
