Skip to content

Commit

Permalink
Update index.html
Browse files Browse the repository at this point in the history
  • Loading branch information
developer-cody authored Nov 7, 2024
1 parent 689ff94 commit 0947a95
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -13,19 +13,20 @@
}

body {
background: linear-gradient(135deg, #ff5e62, #ff9966, #ffc371, #f7b733);
background: linear-gradient(135deg, #ff0000, #00ff00, #0000ff);
color: #ffffff;
display: flex;
align-items: center;
justify-content: center;
min-height: 100vh;
background-size: 200% 200%;
animation: gradientMove 8s ease infinite;
background-size: 300% 300%;
animation: rgbFade 8s ease infinite;
}

@keyframes gradientMove {
@keyframes rgbFade {
0% { background-position: 0% 50%; }
50% { background-position: 100% 50%; }
33% { background-position: 100% 50%; }
66% { background-position: 50% 100%; }
100% { background-position: 0% 50%; }
}

Expand Down

0 comments on commit 0947a95

Please sign in to comment.