diff --git a/assets/css/style.css b/assets/css/style.css new file mode 100644 index 0000000..17e5bff --- /dev/null +++ b/assets/css/style.css @@ -0,0 +1,57 @@ +:root { + --color-dark: #2a2a2a; + --color-light: #dadada; +} + +body { + margin: 0; + font-family: "Noto Sans", sans-serif; + background-color: var(--color-dark); + color: var(--color-light); + text-align: center; +} + +a { + text-decoration: none; +} + +.link { + text-decoration: none; + color: var(--color-light); +} +.link:hover { + text-decoration: underline; +} + +.nav { + display: flex; + align-items: center; + justify-content: space-between; + padding: 1rem; +} + +.heading { + font-size: 3em; + font-family: "Carter One", system-ui; + text-shadow: 2px 2px 15px rgba(var(--color-light), 0.9); +} + +.back-btn { + display: flex; + align-items: center; + gap: 0.2rem; + font-family: "Noto Sans", sans-serif; + font-size: 1em; + font-weight: 500; + color: var(--color-light); + background-color: transparent; + border: 1px solid var(--color-light); + border-radius: 50rem; + padding: 0.4rem 0.8rem; + cursor: pointer; + transition: 0.1s background-color linear, 0.1s color linear; +} +.back-btn:hover { + background-color: var(--color-light); + color: var(--color-dark); +} diff --git a/index.html b/index.html new file mode 100644 index 0000000..ac12e6b --- /dev/null +++ b/index.html @@ -0,0 +1,29 @@ + + +
+ + + + + + +