style.css 446 B

1234567891011121314151617181920212223242526272829
  1. * {
  2. margin: 0;
  3. padding: 0;
  4. background: #000000;
  5. }
  6. .content {
  7. width: 100%;
  8. max-width: 960px;
  9. display: flex;
  10. justify-content: center;
  11. align-items: center;
  12. flex-direction: column;
  13. }
  14. .content h1 {
  15. font-size: 120px;
  16. font-weight: 800;
  17. color: #ffffff;
  18. text-align: center;
  19. }
  20. .content p {
  21. font-size: 80px;
  22. font-weight: 400;
  23. color: #2e2e2e;
  24. margin-top: 100px;
  25. text-align: center;
  26. }