Differences on local and codepen (tribute page)

Hi! im finishing my tribute page, but when i transfer the code to codepen it change:

Tribute page:
Chris Cornell tribute page

local:


i don’t like the way it looks in codepen. Help please

You’re going to have to be more specific

i mean the width of the whithe rectangles

I would consider applying your class text-big directly to the h3 element and controlling it there:

    .text-big {
        font-size: 35px;
        background-color: white;
        text-align: center;
        margin-left: 20%;
        margin-right: 20%;
    }

and

<div>
    <h3 class="text-center text-big">"Voice of our generation and an artist for all time"</h3>
</div>

In fact, I’m not even sure that you need the div that surrounds it.