38 lines
864 B
Handlebars
38 lines
864 B
Handlebars
|
<head>
|
||
|
<meta charset="utf-8">
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||
|
|
||
|
<title>Daton</title>
|
||
|
|
||
|
<link href="https://fonts.googleapis.com/css?family=Quicksand:300,500" rel="stylesheet">
|
||
|
|
||
|
<style>
|
||
|
html, body {
|
||
|
background-color: #F2F4FF;
|
||
|
color: #36453B;
|
||
|
font-family: 'Quicksand', sans-serif;
|
||
|
font-weight: 500;
|
||
|
height: 100vh;
|
||
|
margin: 0;
|
||
|
}
|
||
|
|
||
|
.container {
|
||
|
height: 100vh;
|
||
|
margin: 0;
|
||
|
overflow: hidden;
|
||
|
display: flex;
|
||
|
flex-direction: column;
|
||
|
align-items: center;
|
||
|
justify-content: center;
|
||
|
}
|
||
|
|
||
|
.container h1 {
|
||
|
margin-bottom: 0;
|
||
|
}
|
||
|
|
||
|
.container h2 {
|
||
|
font-weight: 300;
|
||
|
}
|
||
|
</style>
|
||
|
</head>
|