From 23384a94a1f56e9159ad9d9fea3ef8235b690f5c Mon Sep 17 00:00:00 2001 From: JPtheDash <137363790+JPtheDash@users.noreply.github.com> Date: Wed, 18 Dec 2024 21:37:36 +0530 Subject: [PATCH] Update index.html --- index.html | 103 +++++++++++++++++++++++++++++++++++++++-------------- 1 file changed, 76 insertions(+), 27 deletions(-) diff --git a/index.html b/index.html index 1cb70fd..0c23f0f 100644 --- a/index.html +++ b/index.html @@ -8,19 +8,39 @@ body { margin: 0; overflow: hidden; - background-color: #b2d8d8; + background-color: #87CEEB; /* Light sky blue */ } canvas { display: block; + background: linear-gradient(#87CEEB, #228B22); /* Sky to green grass */ + } + #startButton { + position: absolute; + top: 50%; + left: 50%; + transform: translate(-50%, -50%); + padding: 15px 30px; + background-color: #FF4500; + color: white; + font-size: 20px; + border: none; + border-radius: 5px; + cursor: pointer; + display: none; + } + #startButton:hover { + background-color: #e03e00; } +