From 28cf088c7d6a81c1e57e83fa56305dee1e858181 Mon Sep 17 00:00:00 2001 From: verymeticulous <82035192+verymeticulous@users.noreply.github.com> Date: Fri, 30 Jul 2021 13:23:42 -0400 Subject: [PATCH] Create style.css --- style.css | 65 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 65 insertions(+) create mode 100644 style.css diff --git a/style.css b/style.css new file mode 100644 index 0000000..5858234 --- /dev/null +++ b/style.css @@ -0,0 +1,65 @@ +@import url('https://fonts.googleapis.com/css2?family=Permanent+Marker&family=Fira+Mono:wght@500&display=swap'); +body{ + height: 95vh; + background: #000000; + text-align: center; + color: #E0E0E0; + font-family: 'Fira Mono', monospace; +} +h1{ + font-size: 2.5rem; + font-family: 'Permanent Marker', cursive; +} +div{ + transform-style: preserve-3d; +} +svg{ + width: clamp(300px , 70% , 600px); + height: 500px; + +} +#rocket{ + + transform: translateY(750px); + + animation: launch 2s ease-out forwards; +} + +@keyframes launch { + from { + transform: translateY(750px); + } + to{ + perspective: 500px; + transform: translateY(0px); + } +} +#stars { + animation: twinkling 2s linear ; +} +@keyframes twinkling { + + from{ + transform: scale(0); + } + to{ + transform: scale(1); + } +} +.text{ + opacity: 0; + animation:appear 1s ease-in forwards; + animation-delay: 1.8s; +} +@keyframes appear { + from{ + opacity: 0; + } + to{ + opacity: 1; + } +} +a{ + color:#F66947; + text-decoration: none; +}