18 lines
303 B
CSS
18 lines
303 B
CSS
|
.notFoundPage {
|
||
|
margin: 0 auto 30px;
|
||
|
display: flex;
|
||
|
justify-content: center;
|
||
|
align-items: center;
|
||
|
flex-direction: column;
|
||
|
text-align: center;
|
||
|
}
|
||
|
|
||
|
.notFoundPage__img {
|
||
|
margin: 0 auto;
|
||
|
display: flex;
|
||
|
justify-content: center;
|
||
|
flex-direction: column;
|
||
|
width: 100%;
|
||
|
max-width: 640px;
|
||
|
}
|