36 lines
507 B
CSS
36 lines
507 B
CSS
|
|
.container {
|
||
|
|
width: 100vw;
|
||
|
|
height: 100vh;
|
||
|
|
display: flex;
|
||
|
|
align-items: center;
|
||
|
|
justify-content: center;
|
||
|
|
flex-direction: column;
|
||
|
|
}
|
||
|
|
|
||
|
|
.error {
|
||
|
|
height: fit-content;
|
||
|
|
width: fit-content;
|
||
|
|
display: flex;
|
||
|
|
flex-direction: column;
|
||
|
|
align-items: center;
|
||
|
|
}
|
||
|
|
|
||
|
|
.code {
|
||
|
|
font-size: 80px;
|
||
|
|
display: flex;
|
||
|
|
gap: 50px;
|
||
|
|
font-weight: 700;
|
||
|
|
}
|
||
|
|
|
||
|
|
.line {
|
||
|
|
width: 100%;
|
||
|
|
height: 1px;
|
||
|
|
background-color: black;
|
||
|
|
}
|
||
|
|
|
||
|
|
.message {
|
||
|
|
padding-top: 20px;
|
||
|
|
font-size: 25px;
|
||
|
|
text-align: center;
|
||
|
|
font-weight: 500;
|
||
|
|
}
|