index.css 445 B

123456789101112131415161718192021222324252627282930
  1. *{margin:0;padding:0;}
  2. body{
  3. font-family: monospace;
  4. background: #152730;
  5. box-sizing: border-box;
  6. padding: 25px;
  7. }
  8. div{
  9. background: #C4C6C0;
  10. width: 75vw;
  11. box-sizing: border-box;
  12. padding: 50px;
  13. margin: auto;
  14. }
  15. h1{
  16. text-align: center;
  17. margin-bottom: 50px;
  18. font-size: 50px;
  19. }
  20. p{
  21. text-indent: 50px;
  22. margin-bottom: 22px;
  23. text-align: justify;
  24. font-size: 22px;
  25. line-height: 1.8;
  26. }