@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Work+Sans&display=swap');

.terms {
    background: #F34646;
    width: 100%;
    height: calc(100vh - 100px);
    display: block;
    flex-direction: column;
    overflow-y: scroll;
    scrollbar-width: none;
}

.terms .centered {
    margin-left: auto;
    margin-right: auto;
    width: 1300px;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.terms .terms-title {
    color: #FFFFFF;
    text-align: center;
    font-family: "Bebas Neue", sans-serif;
    font-size: 150px;
    margin-top: 100px;
    margin-bottom: 20px;
}

.terms .terms-text {
    color: #FFFFFF;
    text-align: justify;
    font-family: "Work Sans", sans-serif;
    font-size: 32px;
    line-height: 54px;
}

@media screen and (max-width: 1340px) {
    .terms .centered {
        width: calc(100% - 40px);
        padding-right: 20px;
        padding-left: 20px;
    }
}