diff --git a/assets/css/custom.css b/assets/css/custom.css new file mode 100644 index 0000000..53a6500 --- /dev/null +++ b/assets/css/custom.css @@ -0,0 +1,32 @@ +/* Typography */ +body { + font-family: "Spectral", serif; + line-height: 1.8; +} + +h1, h2, h3 { + font-family: "Source Sans Pro", sans-serif; + font-weight: 300; +} + +/* Subtle animations */ +.project-card { + transition: all 0.3s ease; +} + +.project-card:hover { + transform: translateY(-2px); +} + +/* Refined spacing */ +.page-content { + margin-top: 2em; +} + +/* Elegant blockquotes */ +blockquote { + border-left: 2px solid #ddd; + color: #666; + margin: 2em 0; + padding-left: 2em; +}