diff --git a/styles.css b/styles.css index 8b13789..ba0fbf7 100644 --- a/styles.css +++ b/styles.css @@ -1 +1,36 @@ +body { + font-family: Arial, sans-serif; + margin: 20px; +} + +h1, h2 { + color: #333; +} + +form { + margin-bottom: 20px; +} + +label { + display: block; + margin-bottom: 5px; +} + +input[type="text"] { + width: 100%; + padding: 8px; + margin-bottom: 10px; +} + +button { + padding: 10px 20px; + background-color: #007bff; + color: #fff; + border: none; + cursor: pointer; +} + +button:hover { + background-color: #0056b3; +}