style.css 473 B

123456789101112131415161718192021222324252627282930
  1. * {
  2. margin: 0;
  3. padding: 0;
  4. }
  5. body {
  6. display: flex;
  7. justify-content: center;
  8. align-items: center;
  9. flex-direction: column;
  10. margin: 15px 0;
  11. }
  12. div {
  13. display: flex;
  14. justify-content: center;
  15. align-items: center;
  16. text-align: center;
  17. margin: 15px;
  18. border-radius: 3%;
  19. }
  20. .task3 {
  21. display: flex;
  22. flex-direction: column;
  23. justify-content: center;
  24. align-items: center;
  25. border: 2px solid #000;
  26. width: 250px;
  27. }