.section {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    margin-top: 10em;
    margin-bottom: 10em;
    width: 50%;
}

.text-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

h1 {
    margin-bottom: 1em;
}

.text-container p {
    line-height: 1.5em;
}

@media only screen and (max-width: 1024px) {
    .section {
        width: 75%;
    }

    .text-container {
        width: 80%;
    }
}

@media only screen and (max-width: 768px) {
    .section {
        width: 90%
    }

    .text-container {
        width: 90%;
    }
}

@media only screen and (max-width: 425px) {

}