custom.css 298 B

12345678910111213141516171819202122232425262728293031
  1. body {
  2. background-color: #f4fff4;
  3. font-family: verdana;
  4. }
  5. h1 {
  6. text-align: center;
  7. }
  8. p {
  9. text-align: center;
  10. font-size: 20px;
  11. }
  12. .feature {
  13. display: flex;
  14. margin: 16px 0;
  15. }
  16. .feature-img {
  17. width: 128px;
  18. height: 128px;
  19. }
  20. .feature-content {
  21. flex: 1;
  22. }
  23. .feature p {
  24. text-align: left;
  25. }