27 lines
536 B
CSS
27 lines
536 B
CSS
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@900&display=swap');
|
|
|
|
html { height:100%; }
|
|
body { position:absolute; top:0; bottom:0; right:0; left:0; }
|
|
|
|
img {
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
left: 0;
|
|
right: 0;
|
|
position: absolute;
|
|
margin-top: 64px;
|
|
}
|
|
|
|
h1 {
|
|
font-family: 'Inter', sans-serif;
|
|
font-size: 64px;
|
|
color: #0C0C3D;
|
|
width: 100%;
|
|
height: 100%;
|
|
display: flex;
|
|
align-content: center;
|
|
justify-content: center;
|
|
align-items: center;
|
|
margin: 0;
|
|
}
|