* {
	box-sizing: border-box;
}
body {
	background: linear-gradient(to bottom , #004, #000);
	color: #fff;
	font-family: "Roboto", sans-serif;
	font-optical-sizing: auto;
	font-weight: 400;
	font-style: normal;
	font-variation-settings: "wdth" 100;
	overflow: hidden;
}
main {
	height: 100vh;
	padding-top: 25px;
	text-align: center;
}
h1 {
	font-size: 4em;
}
section {
	margin: 50px;
	font-size: 2em;
}
#css-section {
	border: 1px solid cyan;
	margin: 0 auto;
	padding: 10px; width: 260px;
	white-space: nowrap;
}
#resume {
	font-size: 1.5em;
	font-style: italic;
	padding-top: 25px;
}
a {
	color: #ccc;
}
.code {
	border: 1px solid #eee;
	font-family: "VT323", monospace;
	font-weight: 400;
	font-style: normal;
	padding: 3px 8px;
}
.tag {
	color: cyan;
}
.blink {
	animation: blinker 1s step-start infinite;
}
@keyframes blinker {
	50% {
		opacity: 0;
	}
}