scrimba
Responsive Design
Think responsively
Adding the background color
Go Pro!Bootcamp

Bootcamp

Study group

Collaborate with peers in your dedicated #study-group channel.

Code reviews

Submit projects for review using the /review command in your #code-reviews channel

Adding the background color
AboutCommentsNotes
Adding the background color
Expand for more info
css
style.css
run
preview
console
body {
font-size: 1.125rem;
color: #707070;
margin: 0;
}

/* Typography */

h1 {
font-size: 3rem;
color: #212614;
text-align: center;
}

h1 span {
color: #b7832f;
}

h2 {
font-size: 1.5rem;
}


/* Layout */

img {
max-width: 100%;
}

.container {
width: 95%;
max-width: 980px;
margin: 0 auto;
}

.columns {
display: flex;
}
Console
index.html
-4:10