html {
	--font-size: 16px;
	font-size: var(--font-size);
}

* {
	box-sizing: border-box;
}

@media (max-width: 600px) {
	html {
		--font-size: 12px;
	}
}

@media (max-width: 450px) {
	html {
		--font-size: 11px;
	}
}

body { 
	height: 100vh;
}

p, h1, h2, h3, h4, h5, h6 {
	margin: 0;
}

.d-block {
	display: block;
}

@keyframes blinking {
  50% {
    opacity: 0;
  }
}

.blink {
  animation: blinking 1.2s step-start infinite;
}

body {
	background: radial-gradient(50% 50% at 50% 50%, rgb(68 68 68 / 20%) 0%, rgba(55, 55, 55, 0) 100%), #171717;
	margin: 0;
	color: white;
} 

.introduction-container {
	height: 33vh;
	min-height: 18rem;
	max-width: 380px;
	width: 50%;
	min-width: 280px;
}

@media (max-width: 600px) {
	.introduction-container {
		width: 100%;
	}
}

.developer-container {
	display: flex;
	justify-content: center;
	height: 33vh;
	align-items: center;
}

.developer-container img {
	height: 6rem;
}

.introduction-text {
	font-family: 'Fira Code', monospace;
	font-size: 5rem;
	font-weight: 600;
	margin: 0 0 0 2rem;
	width: 100%;
}

footer {
	font-family: 'Fira Code', monospace;
	padding: 1.5rem 0;
	margin: 0 1.5rem;
	color: #828282;
	font-size: 0.8rem;
}

footer a:hover {
	text-decoration: underline;
}

footer a {
	color: #a3a3a3;
	text-decoration: none;
}
