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

.header {
    background: #1044F7;
    padding: 1.5rem 0 1.5rem 5rem;
}

.container {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;

    .text-content {
        .title {
            color: #333;
            text-align: center;
            font-family: "Basic Sans", sans-serif;
            font-size: 48px;
            font-style: normal;
            font-weight: 700;
            line-height: normal;
        }

        .text {
            text-align: center;
            font-family: Poppins, sans-serif;
            font-size: 20px;
            font-style: normal;
            font-weight: 500;
            line-height: 140%; /* 28px */
        }
    }
}

.footer {
    background: #333333;
    padding: 2rem 3rem;
    color: white;
    text-align: center;
    font-family: Poppins, serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

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


.desktop {
    display: block;
}

.mobile {
    display: none;
}

@media screen and (max-width: 900px) {
    .desktop {
        display: none;
    }

    .mobile {
        display: block;
    }

    .header {
        display: flex;
        justify-content: center;
        padding: 1.5rem 0;
    }
}