.step-section{
    margin-top: 200px;
}
.step-title {
    text-align: center;
    white-space: pre-line;
    font-size: 35px;
    font-style: italic;
}

.step-title-strong{
    font-size: 70px;
    color: red;
}

.steps-container{
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-around;
}

.step-container{
    width: 33%;
}

.step-image{
    width: 90%;
}
.step-description{
    font-size: 1vw;
    white-space: pre-line;
    text-align: center;
}

@media only screen and (max-width: 500px) {
    .step-title {
        font-size: 24px;
    }
    .step-title-strong {
        font-size: 50px;
    }
    .steps-container {
        flex-direction: column;
        align-items: center;
    }
    .step-container {
        width: 100%;
    }
    .step-image {
        width: 100%;
    }
    .step-description {
        font-size: 16px;
    }
}