index.scss 432 B

1234567891011121314151617181920212223242526272829303132333435
  1. html,
  2. body {
  3. height: 100%;
  4. margin: 0;
  5. }
  6. body {
  7. align-items: center;
  8. display: flex;
  9. justify-content: center;
  10. background: linear-gradient(to bottom right, #444444, #009a5b);
  11. font-size: 1.5rem;
  12. }
  13. main {
  14. color: #fff6d5;
  15. font-family: sans-serif;
  16. text-align: center;
  17. }
  18. .logo {
  19. height: 20em;
  20. }
  21. .heart:after {
  22. content: "❤️";
  23. font-size: 1.75em;
  24. }
  25. h1 + .subtitle {
  26. display: block;
  27. margin-top: -1em;
  28. }