body {
    background: #FFF;
    display: flex;
    flex-direction: column;
    height: 100vh;
    justify-content: center;
    margin: 0;
}

.container {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    z-index: 10;

    .image {
        flex: 1;
        display: flex;
        justify-content: center;
    }

    .text-content {
        flex: 1;
        font-family: Montserrat, sans-serif;
        padding-left: 10rem;

        .title {
            font-family: "centra", sans-serif;
            font-size: 48px;
            font-style: normal;
            font-weight: 800;
            line-height: normal;

            span:first-child {
                color: #000000;
            }

            span:last-child {
                color: #DF3226;
            }
        }

        .text {
            color: #232323;
            font-family: nunito, sans-serif;
            font-size: 24px;
            font-style: normal;
            font-weight: 400;
            line-height: normal;
        }
    }
}

.header {
    position: absolute;
    top: 3rem;
    left: 10rem;
}

.footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    text-align: center;
    padding: 2rem 0;
    border-top: 2px solid #e9e9e9;
    font-family: nunito, sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

@font-face {
    font-family: 'nunito';
    src: url('nunito-semibold.ttf');
}

@font-face {
    font-family: 'centra';
    src: url('centra-extrabold.ttf');
}

@media screen and (max-width: 900px) {
    .container {
        flex-direction: column;
        height: calc(100vh - 13rem);
        overflow-y: auto;
        overflow-x: hidden;

        .text-content {
            text-align: center;
            padding: 0 2rem;
        }
    }

    .header {
        width: 100%;
        left: unset;
        text-align: center;
    }
}