@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400&family=Ubuntu:wght@700&display=swap');

html, body {
    margin: 0;
    padding: 0;
}

.logo {
    font-family: 'Roboto', sans-serif;
    color: #288ac4;
    font-size: 26px;
    max-width: 1160px;
    margin: 15px auto;
    padding: 0 20px;
}

.blue-block {
    background: #2e95d2;
    font-family: 'Roboto', sans-serif;
    color: #ffffff;
    width: 100%;
}

.blue-block-inner {
    background: #2e95d2;
    color: #ffffff;
    display: flex;
    justify-content: space-around;
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 20px;
}

.left-text {
    align-self: center;
}

.left-text .header {
    font-size: 45px;
    margin-bottom: 70px;
}

.left-text .text {
    font-size: 25px;
}

.right-number {
    font-family: 'Ubuntu', sans-serif;
    font-size: 600px;
    align-self: flex-end;
    line-height: 400px;
    padding-top: 100px;
}

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

    .left-text .header {
        font-size: 25px;
        margin-bottom: 40px;
    }

    .left-text .text {
        font-size: 15px;
    }

    .right-number {
        font-size: 200px;
        line-height: 100px;
    }
}