body {
    background-image: url('../imgs/background.png');
    background-position: right;
    background-size: contain;
    background-repeat: no-repeat;
    height: 100vh;
    width: 100vw;
}

.content {
     max-width: 80%;
     margin: 0 auto;
}

.container-body {
    width: 45%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100vh;
}

.back-home {
    text-decoration: none;
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.back-home span {
    margin-left: 1rem;
}

.text-back {
    font-size: 1.5rem;
}

.emphasis {
    color: var(--purple-70);
    font-weight: 700;
}

.construct-title {
    font-size: 4.8rem;
    line-height: 4.7rem;
}

.color-construct-title {
    color: var(--purple-60);
}

.format-text {
    color: var(--bs-gray-800);
    font-weight: 300;
    font-size: 1.3rem;
    margin-top: 1.3rem;
}

.logo-taskier {
    display: none;
}

@media (max-width: 992px) {
    body {
        background: none;
    }

    .container-body {
        width: 100%;
        justify-content: center center;
    }

    .format-text {
        text-align: justify;
    }

    .logo-taskier {
        height: 2.5rem;
        width: auto;
        margin-top: 7rem;
        display: flex;
        justify-content: right;
    }

    .logo-taskier img {
        max-height: 100%;
    }

}

@media (max-width: 768px) {

    .text-back {
        font-size: 1rem;
    }

    .construct-title {
        font-size: 3rem;
        line-height: 2.8rem;
    }

    .format-text {
        font-size: 1rem;
    }

    .logo-taskier {
        height: 1.6rem;
        width: auto;
        margin-top: 2.5rem;
    }
}
