1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
.main {
background-color: aliceblue;
margin:10px;
}
.container >div {
padding:10px;
text-align: center;
font-size: 2em;
color: rgb(245, 241, 236);
display: grid;
grid-template-areas:
"one two three"
"four five "
;
}
.one {
background-color: brown;
}`
.two {
background-color: rgb(63, 228, 74);
}
.three {
background-color: rgb(198, 89, 89);
}
.four {
background-color: rgb(204, 50, 204);
}
.five {`
background-color: rgb(240, 8, 155);
}
.six {
background-color: rgb(91, 53, 217);
}