Cannot go past 'Text Alignment' (15/16)

I Have added text-align: center; in the main heading but it just doesn’t accept it . What am I doing wrong? can anyone of you please help me fix this?

<PLEASE USE THIS TEMPLATE TO HELP YOU CREATE A GREAT POST!>

<Below this line, add a link to the EXACT exercise that you are stuck at.>

<Below this line, in what way does your code behave incorrectly? Include ALL error messages.>

```

body {
/* Old browsers /
background: #141E30;
/
Chrome 10-25, Safari 5.1-6 /
background: -webkit-linear-gradient(-45deg, #35577D, #141E30);
/
W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
background: linear-gradient(-45deg, #35577D, #141E30);
margin: 0;
padding: 0;
}

h1 {
color: #FFF;
font-size: 32px;
font-family: “Playfair Display” , serif ;
text-transform: uppercase;
text-align: center;
padding-top: 100px;
text-align: left;
width: 60%;
}

h2 {
border-bottom: 1px solid rgba(255, 255, 255, 0.5);
color: rgba(255, 255, 255, 0.5);
font-family: Roboto, sans-serif;
font-weight: 100;
font-style:italic;
font-size: 22px;
line-height: 24px;
word-spacing: 0.05em;
letter-spacing: 0.02em;
padding-bottom: 30px;
width: 70%;
}

p {
color: AliceBlue;
line-height: 1.7em;
font-family: Roboto , sans-serif;
font-size: 20px;
font-weight: 100;
width: 100%;
}

.byline {
color: rgba(255, 255, 255, 0.5);
float: left;
font-family: ‘Roboto’, sans-serif;
font-weight: 100;
font-size: 14px;
padding-left: 10px;
text-transform: uppercase;
}

.caption {
background-color: rgba(0, 0, 0, 0.6);
color: rgba(255, 255, 255, 0.65);
display: block;
font-family: ‘Playfair Display’, serif;
font-size: 14px;
font-style: italic;
line-height: 14px;
margin-left: 20px;
padding: 10px;
position: relative;
top: 80%;
width: 60%;
}

.content {
padding: 40px;
}

.image {
background-image: url(“https://s3.amazonaws.com/codecademy-content/courses/web-101/unit-4/htmlcss1-img_soccer.jpeg”);
background-size: cover;
background-position: center;
height: 300px;
}

.writer-img {
-webkit-box-shadow: 5px 0px 5px 0px rgba(0, 0, 50, 0.97);
-moz-box-shadow: 5px 0px 5px 0px rgba(0, 0, 50, 0.97);
box-shadow: 5px 0px 5px 0px rgba(0, 0, 50, 0.97);
float: left;
width: 50px;
}.

<do not remove the three backticks above>

After you’ve declared text-align:center, there is a text-align:left also in the main header css, just remove the left text-align and you should pass it

2 Likes

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.