scrimba
Note at 0:20
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

Note at 0:20
AboutCommentsNotes
Note at 0:20
Expand for more info
index.css
run
preview
console
:root {
--wine-red: #C7375F;
--bright-red: #D42D2F;
--dark-green: #344D2F;
--light-green: #77A047;
--gold: #FAC57D;
--snow: #F0F4F7;
}

html, body {
margin: 0;
padding: 0;
background-image: url("https://cdn.pixabay.com/photo/2017/11/13/02/00/winter-2944419_960_720.jpg");
}

body,
.container {
display: flex;
justify-content: center;
align-items: center
}

body {
background-color: var(--wine-red);
height: 100vh;
}

.container {
background: var(--snow);
flex-direction: column;
border-radius: 10px;
padding: 3em;
min-width: 350px;
box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
}

p {
font-size: 45px;
}

.radio-container {
width: 200px;
font-size: 22px;
}

.christmas {
font-family: 'Mountains of Christmas', cursive;
color: var(--dark-green);
background-color: var(--wine-red);
}

.snow {
font-family: 'Lobster Two', cursive;
color: var(--snow);
background-color: var(--snow);
}

.snow .container {
color: #F0F4F7;
background-color: var(--dark-green);
}

Console
/index.html
LIVE