style.css 504 B

12345678910111213141516171819202122232425262728293031323334353637
  1. :root {
  2. block-size: border-box;
  3. font-size: 16px;
  4. line-height: 20px;
  5. font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  6. }
  7. button {
  8. width: 100%;
  9. font-size: 2em;
  10. }
  11. input,
  12. button,
  13. select {
  14. width: 100%;
  15. font-size: 2em;
  16. }
  17. .container {
  18. max-width: 1200px;
  19. padding: 0 10px;
  20. margin: 0 auto;
  21. }
  22. .products {
  23. margin-top: 10px;
  24. display: flex;
  25. justify-content: center;
  26. font-size: 20px;
  27. }
  28. .wrapper {
  29. display: flex;
  30. justify-content: space-evenly;
  31. align-items: center;
  32. }