.flex_row {
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: center;
}

.flex_column {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.primeiro_quadrado {
    position: absolute;
    margin-top: 35px;
    right: -10px;
    width: 100px;
    height: 100px;
    background-color: #00ED92;
    top: 0px;
}

.segundo_quadrado {
    position: absolute;
    margin-top: 170px;
    left: -45px;
    width: 100px;
    height: 100px;
    background-color: #00ED92;
    top: 0px;
}

.div_botoes_introducao {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    position: absolute;
    bottom: 30px;
}

.botao_introducao_atual {
    width: 30px;
    height: 30px;
    border-radius: 100%;
    background-color: #00ED92;
    margin: 0px 15px;
}

.botao_introducao_diferente {
    width: 30px;
    height: 30px;
    border-radius: 100%;
    background-color: #D9D9D9;
    margin: 0px 15px;
}

.botao_retorno_introducao {
    position: absolute;
    margin-top: 82px;
    left: 5%;
}

.imagem_pessoa {
    margin-top: 3%;
}

@media screen and (min-height: 1900px) {
    .primeiro_quadrado {
        position: absolute;
        margin-top: 70px;
        right: -20px;
        width: 200px;
        height: 200px;
        background-color: #00ED92;
        top: 0px;
    }

    .segundo_quadrado {
        position: absolute;
        margin-top: 360px;
        left: -90px;
        width: 200px;
        height: 200px;
        background-color: #00ED92;
        top: 0px;
    }

    .botao_retorno_introducao {
        position: absolute;
        margin-top: 140px;
        left: 5%;
        width: 80px;
    }

    .div_botoes_introducao {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        position: absolute;
        bottom: 80px;
    }

    .botao_introducao_atual {
        width: 60px;
        height: 60px;
        border-radius: 100%;
        background-color: #00ED92;
        margin: 0px 30px;
    }

    .botao_introducao_diferente {
        width: 60px;
        height: 60px;
        border-radius: 100%;
        background-color: #D9D9D9;
        margin: 0px 30px;
    }

    .imagem_pessoa {
        margin-top: 10%;
        height: 800px;
    }
}

@media screen and (min-width: 1610px) and (max-width: 1680px) and (min-height: 2320px) and (max-height: 2390px) {
    .imagem_pessoa {
        margin-top: 10%;
        height: 900px;
    }

    .botao_retorno_introducao {
        position: absolute;
        margin-top: 160px;
        left: 5%;
        width: 100px;
    }
} 