Skip to content

Commit

Permalink
Update index.html
Browse files Browse the repository at this point in the history
  • Loading branch information
d4tis authored Feb 11, 2024
1 parent c853b51 commit 65222ff
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,12 @@
font-family: 'Ubuntu', Arial, sans-serif; /* Applying Ubuntu font */
margin: 0;
padding: 0;
background-color: #000; /* Black background */
background-color: #272727; /* Dark gray background */
text-align: center;
color: #fff; /* White text */
}
.header {
background-color: #cc5500; /* Darker orange header */
background-color: #0f0f0f; /* Dark gray header */
color: #fff; /* White text */
padding: 20px;
font-weight: bold;
Expand Down Expand Up @@ -49,19 +49,19 @@
.cta-button {
display: inline-block;
padding: 10px 20px;
background-color: #cc5500; /* Darker orange button */
color: #000; /* Black text */
background-color: #2a2a2a; /* Dark gray button */
color: #fff; /* White text */
text-decoration: none;
border-radius: 5px;
border-radius: 25px; /* Rounded corners */
transition: background-color 0.3s ease, color 0.3s ease;
margin: 10px;
font-size: 16px; /* Increase font size */
}
.cta-button:hover {
background-color: #ff9933; /* Lighter orange button on hover */
background-color: #555; /* Gray button on hover */
}
.footer {
background-color: #000; /* Black footer background */
background-color: #0f0f0f; /* Dark gray footer background */
padding: 10px;
font-size: 13px; /* Small font size */
position: fixed;
Expand Down

0 comments on commit 65222ff

Please sign in to comment.