<head> <meta charset = "utf-8"> <title> Shadows </title> <style type = "text/css"> h1 { text-align: center; color: rgb(252, 89, 16); text-shadow: -6px 6px 4px rgb(252, 89, 16, 0.5); font-size: 400%; } #caption { background-color: #002D72; box-shadow: 25px -25px 50px darkblue; } img { box-shadow: 12px 25px 25px rgb(252, 89, 16); border-radius: 260px; } #image-container { display:flex; justify-content: center; } </style> </head> <body> <div id = "image-container"> <img src = "HotMess.jpg"> </div> <div id = "caption"> <h1>Thank GOD the Mets didn't make the playoffs!!!</h1> </div> </body> </html>