*,
*::before,
*::after {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	background: #000;
	font-family: Hack;
}

#logo {
	width: 200px;
	height: auto;
}

nav {
	margin-top: 1.5rem;
}
nav a {
	color: #fff;
	text-decoration: none;
	margin: 0 1rem;
	font-size: 1.1rem;
	position: relative;
}

nav a::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -4px;
	width: 100%;
	height: 2px;
	background: #fff;
	transform: scaleX(0);
	transform-origin: center;
	transition: transform 0.3s ease;
}
nav a:hover::after {
	transform: scaleX(1);
}

@font-face {
	font-family: Hack;
	src: url("hack-regular.woff") format("woff");
}
