20 lines
327 B
CSS
20 lines
327 B
CSS
.movie-container {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
flex-direction: row;
|
|
justify-content: center;
|
|
}
|
|
|
|
.movie-block {
|
|
display: flex;
|
|
flex-direction: column;
|
|
margin: 1%;
|
|
align-items: center;
|
|
}
|
|
|
|
.buttons {
|
|
margin: 10px;
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
justify-content: space-around;
|
|
} |