How to leave the text aligned in the responsive?

0

People are doing the site politicadascidades.com.br and when I switch to responsive design I come across it

This is the welcome screen in desktop version, the text is align="center" and everything is ok as per request. But in the responsive version the text was very strange and the image "Welcome" diminished as in the image below.

In the responsive version the text has lost its quality as you can see, could anyone explain the reason?

I do not know if F12 can but the site is politicadascidades.com.br

    
asked by anonymous 22.03.2017 / 22:37

1 answer

1

Change the margin in your @media screen and (max-width: 768px) to a lower value.

@media screen and (max-width: 768px)
/* style.css:376 */

.bemvindo {
    margin: 10px 10px;
    flex-direction: row;
    flex-wrap: wrap;
}

Discovered this way:

Itlookslikethis:

    
22.03.2017 / 22:47