diff --git a/static/root.css b/static/root.css index e565394..6f69aee 100644 --- a/static/root.css +++ b/static/root.css @@ -45,7 +45,6 @@ body { } .animatedMain { - opacity: 1; animation: fadeDelay 1s linear; animation-delay: 1.25s; animation-fill-mode: both; @@ -102,6 +101,20 @@ img:not(.project-inner > div > img):not(.activity>img) { } } +@keyframes fadeDelay { + 0% { + display: none; + opacity: 0; + transform: translateY(25vh); + } + + 100% { + display: block; + opacity: 1; + transform: translateY(0); + } +} + @keyframes mainText { 0% { transform: translateY(calc(50vh - 6rem)) scale(1.5); @@ -118,20 +131,6 @@ img:not(.project-inner > div > img):not(.activity>img) { } } -@keyframes fadeDelay { - 0% { - display: block; - opacity: 0; - transform: translateY(25vh); - } - - 100% { - display: block; - opacity: 1; - transform: translateY(0); - } -} - @keyframes hideContent { 0% { overflow-y: hidden;