style.css 553 B

1234567891011121314151617181920212223242526
  1. html {
  2. background-color: rgba(27, 38, 54, 1);
  3. text-align: center;
  4. color: white;
  5. }
  6. body {
  7. margin: 0;
  8. color: white;
  9. font-family: "Nunito", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto",
  10. "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue",
  11. sans-serif;
  12. }
  13. @font-face {
  14. font-family: "Nunito";
  15. font-style: normal;
  16. font-weight: 400;
  17. src: local(""),
  18. url("assets/fonts/nunito-v16-latin-regular.woff2") format("woff2");
  19. }
  20. #app {
  21. height: 100vh;
  22. text-align: center;
  23. }