forked from Transparency/kgroad-frontend2
52 lines
884 B
SCSS
52 lines
884 B
SCSS
.not-found {
|
|
padding: 16px;
|
|
margin-bottom: 200px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
|
|
img {
|
|
width: 100%;
|
|
height: 497px;
|
|
aspect-ratio: 1 / 1;
|
|
}
|
|
|
|
div {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
gap: 16px;
|
|
text-align: center;
|
|
|
|
h2 {
|
|
color: rgb(11, 31, 51);
|
|
font-size: 20px;
|
|
font-weight: 800;
|
|
line-height: 24px;
|
|
}
|
|
|
|
p {
|
|
color: rgb(131, 130, 130);
|
|
font-size: 20px;
|
|
font-weight: 400;
|
|
line-height: 24px;
|
|
}
|
|
}
|
|
|
|
a {
|
|
max-width: 320px;
|
|
width: 100%;
|
|
height: 55px;
|
|
margin-top: 62px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
color: rgb(255, 255, 255);
|
|
font-size: 20px;
|
|
font-weight: 800;
|
|
line-height: 24px;
|
|
border-radius: 13px;
|
|
background-color: rgb(57, 152, 232);
|
|
}
|
|
}
|