styles.css 468 B

1234567891011121314151617181920212223242526272829303132
  1. * {
  2. font-family: "Playwrite NZ", cursive;
  3. font-optical-sizing: auto;
  4. font-weight: 400;
  5. font-style: normal;
  6. }
  7. h1 {
  8. /* 16px * 4 */
  9. font-size: 4rem;
  10. }
  11. p {
  12. /* 16px * 2 */
  13. font-size: 2rem;
  14. }
  15. span {
  16. /* 16px * 2 * 0.5 */
  17. font-size: 0.5em;
  18. }
  19. .button {
  20. font-size: 2em;
  21. text-decoration: none;
  22. display: inline-block;
  23. background-color: dodgerblue;
  24. color: white;
  25. border-radius: 2.5em;
  26. padding: 0.5em 1.5em;
  27. }