37 lines
734 B
CSS
37 lines
734 B
CSS
|
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,600,700&display=swap');
|
||
|
|
||
|
h1 {
|
||
|
padding-bottom: 10px;
|
||
|
font-family: 'Open Sans', sans-serif;
|
||
|
font-size: 48px;
|
||
|
margin: 0 auto;
|
||
|
text-align: center;
|
||
|
color: #f5f5f5;
|
||
|
}
|
||
|
|
||
|
h3 {
|
||
|
padding-bottom:35px;
|
||
|
font-family: 'Open Sans', sans-serif;
|
||
|
font-size: 16px;
|
||
|
margin: 0 auto;
|
||
|
text-align: center;
|
||
|
font-weight: 600;
|
||
|
color: #e3e3e3;
|
||
|
}
|
||
|
|
||
|
a {
|
||
|
color: lightblue;
|
||
|
}
|
||
|
|
||
|
body {
|
||
|
min-height: 90vh;
|
||
|
display: flex;
|
||
|
justify-content: center;
|
||
|
align-items: center;
|
||
|
flex-direction: column;
|
||
|
background-color: #171717;
|
||
|
animation: fadeIn 3s;
|
||
|
padding: 0;
|
||
|
margin: 0;
|
||
|
font-family: 'Open Sans Semibold', sans-serif;
|
||
|
}
|