12 lines
224 B
CSS
12 lines
224 B
CSS
.container {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
width: 100%;
|
|
height: 37rem;
|
|
border-radius: 1.6rem;
|
|
background-color: var(--UI-Grey-10);
|
|
text-align: center;
|
|
margin-right: 1.6rem;
|
|
}
|