44 lines
457 B
CSS
44 lines
457 B
CSS
* {
|
|
|
|
font-family: Lato sans-serif;
|
|
|
|
background-color: #4A245E;
|
|
color: white;
|
|
|
|
}
|
|
|
|
body {
|
|
|
|
display: flex;
|
|
justify-content: center;
|
|
|
|
}
|
|
|
|
.grid {
|
|
|
|
display: grid;
|
|
|
|
grid-template-columns: 10em 10em 10em;
|
|
grid-template-rows: 10em 10em 10em;
|
|
|
|
width: 75%;
|
|
|
|
}
|
|
|
|
.box {
|
|
|
|
font-size: 5em;
|
|
|
|
border: 1px solid white;
|
|
|
|
padding: 1em;
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
align-items: center;
|
|
|
|
margin: 0;
|
|
|
|
}
|