Skip to content

Commit

Permalink
Update background image
Browse files Browse the repository at this point in the history
  • Loading branch information
TechGuy541 authored Sep 19, 2024
1 parent 4d56d56 commit fef18f0
Showing 1 changed file with 10 additions and 6 deletions.
16 changes: 10 additions & 6 deletions styles.css
Original file line number Diff line number Diff line change
@@ -1,10 +1,14 @@
body {
font-family: 'Roboto', sans-serif;
text-align: center;
background-color: #1a1a1a;
color: #fff;
margin: 0;
padding: 0;
font-family: Roboto, sans-serif;
text-align: center;
background-image: url('background.png'); /* Replace with your image path */
background-size: cover; /* Ensures the image covers the entire background */
background-position: contain; /* Centers the image both horizontally and vertically */
background-repeat: no-repeat; /* Prevents the image from repeating */
background-color: #000; /* Fallback color in case image doesn't cover the entire screen */
margin: 0;
padding: 0;
color: #fff; /* Adjust text color for contrast */
}


Expand Down

0 comments on commit fef18f0

Please sign in to comment.