@font-face {
    font-family: "Hurme";
    src: url('font/hurme_1.otf');
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Hurme";
}

:root {
    --bg-blue: #1877F2;
}

body {
    height: 100vh;
    width: 100vw;
    background: url(icones/face-bg.svg)no-repeat;
    background-color: var(--bg-blue);
    background-position: 450px;
    color: #fff;
}

section {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
}

img {
    filter: drop-shadow(0px 5px 15px rgba(0, 0, 0, 0.35));
}

.titulo {
    position: relative;
    top: -15px;
}

.titulo p {
    font-size: 2.5em;
    text-align: center;
}

.titulo p+p {
    font-size: 5.5em;
    text-transform: lowercase;
}

.balao-1 {
    position: absolute;
    bottom: 160px;
    right: 435px;
}

.balao-2 {
    position: absolute;
    bottom: 300px;
    left: 390px;
    z-index: -1;
}

.balao-3 {
    position: absolute;
    left: 50px;
    bottom: 0px;
    font-size: 4em;
}

.balao-4 {
    position: absolute;
    top: 100px;
    right: 300px;
}

.balao-4::after {
    content: "2.000";
    position: absolute;
    left: 60px;
    font-size: 3em;
    top: 125px;
}


@media(max-width: 1280px) {
    .titulo p+p {
        font-size: 4em;
        text-transform: lowercase;

    }
    img {
        width: 30%;
        margin-left: 330px;
    }

    .balao-3 img {
        margin-left: 10px;
    }

    .balao-4{
        right: 50px;
    }

    .balao-4::after {
        left: 340px;
        top: 110px;
    }

    .balao-1 {
        right: 225px;
        bottom: 100px;
    }

    .balao-2 {
        left: -10px;
        bottom: 200px;
    }
}

@media(width: 1080px) {
    body {
        background-position: center;
    }

    img {
        width: 50%;
        margin-left: 210px;
    }

    .balao-1 {
        right: 105px;
        bottom: 720px;
    }

    .balao-2 {
        left: -120px;
        bottom: 800px;
    }

    .balao-4 {
        right: 100px;
    }

    .balao-4::after {
        left: 250px;
        top: 10px;
    }

}

@media(max-width: 960px) {
    .titulo p+p {
        font-size: 4em;
        text-transform: lowercase;
    }
    .titulo p {
        font-size: 2em;
    }

    .titulo p+p {
        font-size: 3em;
        text-transform: lowercase;
    }


    img {
        width: 30%;
        margin-left: 330px;
    }

    .balao-3 img {
        margin-left: 10px;
    }

    .balao-4{
        right: 50px;
    }

    .balao-4::after {
        left: 350px;
        top: 110px;
        font-size: 2.5rem;
    }

    .balao-1 {
        right: 80px;
        bottom: 80px;
    }

    .balao-2 {
        left: -160px;
        bottom: 150px;
    }
}

@media(max-width: 720px) {
    body {
        background-position: center;
    }

    img {
        width: 50%;
        margin-left: 170px;
    }

    .titulo {
        top: -170px;
    }

    .balao-1 {
        position: absolute;
        bottom: 335px;
        right: 10px;
    }

    .balao-1 img {
        height: 200px;
    }

    .balao-2,
    .balao-4 {
        display: none;
    }

}

@media(max-width: 540px) {
    body {
        background-position: center;
    }

    img {
        width: 50%;
        margin-left: 130px;
    }
    .balao-3 {
        font-size: 2.5em;
    }

    .titulo {
        top: -170px;
    }

    .balao-1 {
        position: absolute;
        bottom: 265px;
        right: 10px;
    }

}