Hello,
Did everyone notice that in Step 23 when you use rgb(0, 255, 0) instead of the keyword green your green is different color? It is rather more acidic than if you use the keyword green. Why is that?
h1 {
text-align: center;
}
.container {
background-color: rgb(0, 0, 0);
}
.marker {
width: 200px;
height: 25px;
margin: 10px auto;
}
.one {
background-color: rgb(255, 0, 0);
}
.two {
background-color: rgb(0, 255, 0);
}
.three {
background-color: rgb(0, 0, 255);
}