LewisC92/hoxton-wealth-rectangles
0
1<!DOCTYPE html>2<html lang="en">3<head>4 <meta charset="UTF-8">5 <meta name="viewport" content="width=device-width, initial-scale=1.0">6 <title>Accent Rectangle</title>7 <style>8 body {9 margin: 0;10 display: flex;11 justify-content: center;12 align-items: center;13 height: 100vh;14 background-color: #f8fafc;15 }16 .rectangle {17 width: 300px;18 height: 180px;19 border-radius: 28px;20 background-color: #1D4ED8;21 box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);22 }23 </style>24</head>25<body>26 <div class="rectangle"></div>27</body>28</html>29 