31 lines
368 B
CSS
31 lines
368 B
CSS
*,
|
|
::before,
|
|
::after {
|
|
margin: 0;
|
|
padding: 0;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
html,
|
|
body {
|
|
min-height: 100vh;
|
|
width: 100%;
|
|
text-align: center;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
main {
|
|
margin: auto 0;
|
|
}
|
|
|
|
.error404 p {
|
|
font-size: 2rem;
|
|
}
|
|
|
|
.error404 img {
|
|
width: 25%;
|
|
}
|