centered the sunflower decoration on home page it was pissing me off

Changed files
+7 -2
src
pages
styles
+1 -1
package.json
··· 7 7 "build": "astro build", 8 8 "preview": "astro preview", 9 9 "astro": "astro", 10 - "cleanup": "prettier . --write" 10 + "cleanup": "prettier . --write --check" 11 11 }, 12 12 "dependencies": { 13 13 "@astrojs/rss": "^4.0.13",
+1 -1
src/pages/home.astro
··· 26 26 </a> 27 27 </header> 28 28 <main class="grid"> 29 - <div class="bwbox center hidedeco"> 29 + <div class="bwbox flex flexcenter hidedeco"> 30 30 <img src="/img/sprites/sunfl1.png" alt="" /> 31 31 </div> 32 32 <div id="blog" class="bwbox">
+5
src/styles/main.css
··· 76 76 flex-wrap: wrap; 77 77 } 78 78 79 + .flexcenter { 80 + justify-content: center; 81 + align-items: center; 82 + } 83 + 79 84 .barcodetext { 80 85 font-family: barcodetext; 81 86 }