15 lines
162 B
CSS
15 lines
162 B
CSS
section {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
gap: 1rem;
|
|
}
|
|
|
|
section:not(:last-of-type){
|
|
margin-bottom: 2rem;
|
|
}
|
|
|
|
.moves {
|
|
width: 12rem;
|
|
text-align: center;
|
|
}
|