@font-face {
    font-family: 'MADE Canvas';
    src: url('font/MADECanvas-Light.woff2') format('woff2'),
         url('font/MADECanvas-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

body {
	background: #000;
	text-align: center;
	width: 500px;
	margin: 0 auto;
}

header .title {
	font-family: 'MADE Canvas', serif;
	color: #fff;
	font-size: 115px;
	margin-top: 20px;
}

p {
	font-family: 'MADE Canvas', serif;
	color: #fff;
}

iframe {
	margin: 30px 0;
}

footer a {
	color: #fff;
	text-decoration: none;
	margin: 0 20px;
	font-family: 'MADE Canvas', serif;
	text-transform: uppercase;
	display: inline-block;
	margin: 10px;
	position: relative;
}

footer a:before {
	content: "";
	position: absolute;
	bottom: -2px;
	left: 0;
	right: auto;
	height: 1px;
	background: #fff;
	width: 0;
	-webkit-transition: all .5s cubic-bezier(0.165, 0.84, 0.44, 1);
	-moz-transition: all .5s cubic-bezier(0.165, 0.84, 0.44, 1);
	-ms-transition: all .5s cubic-bezier(0.165, 0.84, 0.44, 1);
	-o-transition: all .5s cubic-bezier(0.165, 0.84, 0.44, 1);
	transition: all .5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

footer a:hover:before {
	width: 98%;
}

footer a:visited {
	color: #fff;
}

@media screen and (max-width: 768px) {
	body {
		width: 320px;
	}

	header .title {
		font-size: 75px;
	}

	iframe {
		width: 320px !important;
		height: 320px !important;
	}

	footer a {
		display: block;
		font-size: 20px;
	}

	footer a:before {
		display: none;
	}
}