scrimba
Responsive Design
Taking it to the next level
Continuing the hero area
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

Continuing the hero area
AboutCommentsNotes
Continuing the hero area
Expand for more info
css
style.css
run
preview
console
* {box-sizing: border-box;}

body {
margin: 0;
font-family: 'Montserrat', sans-serif;
font-size: 1rem;
color: #404040;
line-height: 1.6;
}

h1, h2, strong {
font-weight: 700;
}


/* ==================
hero area
===================== */

.hero {
display: grid;
grid-template-columns: minmax(1em, 1fr) minmax(0px, 500px) minmax(1em, 1fr);
background-image: url(img/hero-bg.jpg);
color: #fff;
}

.hero > * {
grid-column: 2 / -2;
}
Console
index.html
-5:03