diff --git a/index.html b/index.html index fa0c29b..1e2b2c1 100644 --- a/index.html +++ b/index.html @@ -4,6 +4,9 @@ + + + Hot Gitato! diff --git a/styles.css b/styles.css index e69de29..b14006e 100644 --- a/styles.css +++ b/styles.css @@ -0,0 +1,29 @@ +/*Jason: I cleaned up the readability a little, but your CSS skills are beyond mine so I ain't touched it*/ + +* {font-family: 'Rubik Mono One', sans-serif;} + +body{ + background: linear-gradient(350deg, #8D84DC, #E18D07); + color:#F6EFEE +} + +header {text-align: center;} + +img{ + width: 3rem; + animation: bounce 5s linear; +} + +@keyframes bounce { + 20%, 50%, 80%, to{ + transform: translateX(0) + } + 40%{ + transform: translateX(-1000px) + } + 70%{ + transform: translateX(1000px) + } +} + +section {padding-left: 2rem}