30 lines
390 B
CSS
30 lines
390 B
CSS
|
* {
|
||
|
box-sizing: border-box;
|
||
|
font-family: 'Helvetica Neue', Helvetica, sans-serif;
|
||
|
font-weight: 400;
|
||
|
}
|
||
|
html, body {
|
||
|
margin: 0;
|
||
|
padding: 0;
|
||
|
}
|
||
|
|
||
|
h1 {
|
||
|
position: absolute;
|
||
|
left: 15%;
|
||
|
top: 20%;
|
||
|
width: 70%;
|
||
|
text-align: center;
|
||
|
color: #aaa;
|
||
|
}
|
||
|
|
||
|
a {
|
||
|
position: absolute;
|
||
|
top: 40%;
|
||
|
width: 100%;
|
||
|
text-align: center;
|
||
|
}
|
||
|
|
||
|
img {
|
||
|
width: 60px;
|
||
|
}
|