44 lines
762 B
CSS
44 lines
762 B
CSS
body {
|
|
margin: 0;
|
|
padding: 0;
|
|
font-family: -apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen,Ubuntu,Cantarell,Fira Sans,Droid Sans,Helvetica Neue,sans-serif;
|
|
color: #fafafa;
|
|
line-height: 1.25;
|
|
font-size: 24px;
|
|
background: #171717;
|
|
}
|
|
div.wrapper {
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: space-around;
|
|
align-items: center;
|
|
height: calc(100vh - 8rem);
|
|
padding: 4rem 2rem;
|
|
text-align: center;
|
|
}
|
|
div.msg {
|
|
max-width: 60ch;
|
|
}
|
|
h1 {
|
|
font-size: 3rem;
|
|
font-weight: 700;
|
|
margin: 0 0 2rem;
|
|
}
|
|
h2 {
|
|
font-size: 2rem;
|
|
font-weight: 700;
|
|
margin: 0 0 1rem;
|
|
line-height: 1.25;
|
|
}
|
|
p {
|
|
line-height: 1.5;
|
|
}
|
|
img {
|
|
max-width: 166px;
|
|
}
|
|
a,
|
|
a:visited,
|
|
a:active {
|
|
color: #d0bfff !important;
|
|
text-decoration: none;
|
|
}
|