From b5494479038b2db3547bc387bab806db610e49c7 Mon Sep 17 00:00:00 2001 From: siddhiavhad27 Date: Mon, 30 Mar 2026 15:08:15 +0000 Subject: [PATCH] Add style.css --- style.css | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 style.css diff --git a/style.css b/style.css new file mode 100644 index 0000000..af86758 --- /dev/null +++ b/style.css @@ -0,0 +1,33 @@ +body { + font-family: Arial, sans-serif; + background-color: #f0f4f8; + text-align: center; + margin-top: 100px; +} + +.container { + background-color: white; + padding: 30px; + width: 300px; + margin: auto; + border-radius: 10px; + box-shadow: 0px 4px 10px rgba(0,0,0,0.1); +} + +h1 { + color: #333; +} + +button { + padding: 10px 20px; + font-size: 16px; + background-color: #007BFF; + color: white; + border: none; + border-radius: 5px; + cursor: pointer; +} + +button:hover { + background-color: #0056b3; +} \ No newline at end of file