body { font-family: 'Muli', sans-serif; text-align: center; background: linear-gradient(184deg, black 0%, black 33%, transparent 33%); background-repeat: no-repeat; } #header { font-size: 3em; margin-top: 3%; padding: 5%; color: white; } .title { font-size: 1.5em; padding: 1%; } #center { padding: 2%; } #links { margin-top: 7%; padding: 2%; } ul { margin: 2%; padding-left: 0; list-style: none; } li { padding: 1%; } li::first-letter { color: #444444; } a:link, a:visited, a:active { color: green; } a:hover { color: darkslategray; } #github-icon { width: 20px; height: 20px; vertical-align: text-top; } .logo { width: 20px; height: 20px; vertical-align: middle; } .monospaced { font-family: 'Inconsolata', monospace; } .blink_text { opacity: 0; animation: 1s blinker ease-in-out 10; } @keyframes blinker { 0% { opacity: 0.0; } 50% { opacity: 1.0; } 100% { opacity: 0.0; } } .grow { transition: .2s ease-in-out; } .grow:hover { transform: scale(1.1); }