35 lines
432 B
SCSS
35 lines
432 B
SCSS
html,
|
|
body {
|
|
height: 100%;
|
|
margin: 0;
|
|
}
|
|
|
|
body {
|
|
align-items: center;
|
|
display: flex;
|
|
justify-content: center;
|
|
|
|
background: linear-gradient(to bottom right, #444444, #009a5b);
|
|
font-size: 1.5rem;
|
|
}
|
|
|
|
main {
|
|
color: #fff6d5;
|
|
font-family: sans-serif;
|
|
text-align: center;
|
|
}
|
|
|
|
.logo {
|
|
height: 20em;
|
|
}
|
|
|
|
.heart:after {
|
|
content: "❤️";
|
|
|
|
font-size: 1.75em;
|
|
}
|
|
|
|
h1 + .subtitle {
|
|
display: block;
|
|
margin-top: -1em;
|
|
}
|