diff --git a/index.html b/index.html index 0cc1325..76e8199 100644 --- a/index.html +++ b/index.html @@ -1,13 +1,25 @@ - - - + + + WEATHER APP - - - - + + + + +
+
+ + +
+
- - \ No newline at end of file + + diff --git a/style.css b/style.css index e69de29..84dee4b 100644 --- a/style.css +++ b/style.css @@ -0,0 +1,30 @@ +*{ + margin: 0; + padding: 0; +} + +body{ + margin: 0; + min-height: 100vh; + display: flex; + justify-content: center; + align-items: center; + background-image: url('https://images.pexels.com/photos/1118873/pexels-photo-1118873.jpeg?cs=srgb&dl=pexels-jplenio-1118873.jpg&fm=jpg'); + font-family: sans-serif; + background-size: cover; +} + +main{ + width: 300px; + height: max-content; + min-height: 300px; + background-color: #f7f7f7; + border-radius: 30px; + box-shadow: 0px 30px 50px #5553; + padding: 30px; + box-sizing: border-box; +} + +main form{ + +} \ No newline at end of file