13421526
Data utworzenia: 04-11-2024 11:26:03
*{ margin: 0; padding: 0; box-sizing: border-box } body{ font-family: "Lato", sans-serif; font-weight: 100; font-style: normal; background-color: #222; color: white; } .container{ display: flex; justify-content: center; align-items: center; } .box{ width: 200px; height: 200px; border: 2px solid white; box-shadow: 2px 2px 15px white; margin: 20px 5px; } .box1{ display: flex; justify-content: center; align-items: center; background-color: aquamarine; color: #222; border-color: red; } .box2{ display: flex; align-items: end; justify-content: right; background-color: gold; color: #222; border-color: green; } .box3{ display: flex; justify-content: right; background-color: blue; border-color: gold; } .box4{ display: flex; align-items: center; justify-content: left; background-color: antiquewhite; color: #222; border-color: yellow }