*,
html {
	margin: 0;
	padding: 0;
	outline: none;
	box-shadow: none;
}
html,
body {
	height: 100%;
}
body {
	background-color: #111;
	color: #fff;
	font: 16px 'Inter', sans-serif;
	font-optical-sizing: auto;
	font-weight: 400;
	font-style: normal;
	line-height: 1.5;
}
a {
	color: #fff;
	text-decoration: none;
	transition: color 0.2s linear;
}
a:hover {
	color: #dd0022;
}
h2 {
	font: 38px 'Outfit', sans-serif;
	font-weight: 700;
	line-height: 1.1;
	margin: 0 0 10px;
}
p {
	color: #bbb;
}
.container {
	display: flex;
	align-items: center;
	height: 100%;
}
.child {
	margin: 40px;
}
.logo {
	margin: 0 0 45px;
}
.description {
	margin: 0 0 55px;
}
.social-anchor {
	display: inline-block;
	margin: 0 15px 0 0;
	font-size: 24px;
}
.copyright {
	font-size: 12px;
	opacity: 0.5;
	margin: 55px 0 0;
}
.blinking-square {
  display: inline-block;
  width: 3px;
  height: 1.35em;
  margin-left: 3px;
	margin-top: 1px;
  background-color: #dd0022;
  animation: blink 1s infinite;
	position: absolute;
}
@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
::selection {
  background-color: #dd0022;
  color: #660022;
}
@media (max-width: 425px) {
	h2 {
		font-size: 30px;
	}
	.child,
	.logo {
		width: 100%;
	}
}
