style.css 462 B

123456789101112131415161718192021222324252627282930
  1. * {
  2. box-sizing: border-box;
  3. }
  4. body {
  5. margin: 0;
  6. padding: 0;
  7. }
  8. .container {
  9. width: 50%;
  10. height: 100vh;
  11. margin: 0 auto;
  12. display: flex;
  13. flex-wrap: wrap;
  14. justify-content: center;
  15. align-items: center;
  16. }
  17. button {
  18. width: 250px;
  19. height: 100px;
  20. cursor: pointer;
  21. font-weight: bold;
  22. font-size: 30px;
  23. }
  24. .blue-belt {
  25. width: 100%;
  26. height: 150px;
  27. color: blue;
  28. font-size: 60px;
  29. font-weight: bold;
  30. }