13 lines
187 B
CSS
13 lines
187 B
CSS
|
.container {
|
||
|
display: grid;
|
||
|
grid-template-columns: 700px;
|
||
|
gap: 16px;
|
||
|
height: 100vh;
|
||
|
justify-content: center;
|
||
|
align-items: center;
|
||
|
}
|
||
|
|
||
|
.container main {
|
||
|
text-align: center;
|
||
|
}
|