diff --git a/index.css b/index.css index e816081..3345adb 100644 --- a/index.css +++ b/index.css @@ -1,17 +1,33 @@ +body { + display: flex; + flex-wrap: wrap; + flex-direction: row; + justify-content: space-evenly; +} + .red { - width: 150px; - height: 150px; - background-color: red; + border: 3px solid black; + margin: 5px; + width: 150px; + height: 150px; + background-color: red; + order: -4; } .blue { - width: 150px; - height: 150px; - background-color: blue; + border: 3px solid black; + margin: 5px; + width: 150px; + height: 150px; + background-color: blue; + order: 2; } .yellow { - width: 150px; - height: 150px; - background-color: yellow; + border: 3px solid black; + margin: 5px; + width: 150px; + height: 150px; + background-color: yellow; + order: -3; }