28 lines
348 B
CSS
28 lines
348 B
CSS
html,
|
|
body {
|
|
padding: 0;
|
|
margin: 0;
|
|
}
|
|
|
|
body {
|
|
font-family: -apple-system, 'Helvetica Neue', Helvetica, sans-serif;
|
|
}
|
|
|
|
header {
|
|
position: absolute;
|
|
width: 500px;
|
|
height: 250px;
|
|
top: 50%;
|
|
left: 50%;
|
|
margin-top: -125px;
|
|
margin-left: -250px;
|
|
text-align: center;
|
|
}
|
|
|
|
header h1 {
|
|
font-size: 60px;
|
|
font-weight: 100;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|