@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Work+Sans&display=swap');

.about {
    background: #FFE86D;
    width: 100%;
    height: calc(100vh - 100px);
    display: block;
    flex-direction: column;
    overflow-y: scroll;
    scrollbar-width: none;
}

.about .centered {
    margin-left: auto;
    margin-right: auto;
    width: 1300px;
    height: calc(100vh - 100px);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about .about-title {
    color: #F34646;
    text-align: center;
    font-family: "Bebas Neue", sans-serif;
    font-size: 150px;
    margin-top: 0;
    margin-bottom: 20px;
}

.about .about-information {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    height: calc(100vh - 400px);
    width: 100%;
}

.about .about-text {
    color: #000000;
    text-align: justify;
    font-family: "Work Sans", sans-serif;
    font-size: 30px;
    height: 100%;
    /* justify text vertically */
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: calc(7.5vh - 15px);
    margin-top: 0;
    margin-bottom: 0;
    padding-right: 50px;
}

@media screen and (max-width: 1340px) {
    .about .centered {
        width: calc(100% - 40px);
        padding-right: 20px;
        padding-left: 20px;
    }
}

@media screen and (max-width: 1200px) {
    .about .centered {
        height: auto;
    }

    .about .about-information {
        flex-direction: column;
        height: auto;
    }

    .about .about-text {
        padding-right: 0;
        padding-bottom: 50px;
        line-height: 70px;
    }
}