index.css 288 B

12345678910111213141516171819
  1. *{margin:0;padding:0;}
  2. h1{
  3. margin: 25px 0;
  4. text-align: center;
  5. border-bottom: 2px solid black;
  6. }
  7. #images{
  8. display: flex;
  9. flex-wrap: wrap;
  10. justify-content: space-around;
  11. width: 100vw;
  12. }
  13. #images > *{
  14. max-height: 250px;
  15. padding: 25px;
  16. }