@font-face {
    font-family: 'Squarewave';
    src: url('../fonts/Squarewave.woff2') format('woff2'),
        url('../fonts/Squarewave.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

html {
	height: 100%;
}

body {
	background:#160e37 url(../img/gang.jpg) center top no-repeat;
	display:flex;
	flex-direction: column;
	align-items:center;
	justify-content: flex-start;
	height: 100%;
	font: 30px Squarewave;
}

body>div:first-child {
	display: flex;
	flex-direction: column;
	width: 492px;
	margin-top: 550px;
	text-align: center;
}

body>div:first-child>a {
	display: block;
	margin-top: -50px;
}

body>div:first-child>a:last-child {
	margin-top: 15px;
	color: white;
	text-decoration: none;
}

body>div:first-child>a>img {
	width: 100%;
}

@media all and (max-width: 1024px) {
	body {
		background-position: center -100px;
		margin-top: -100px;
	}
	
}

@media all and (max-width: 480px) {
	body {
		background-size: 170vw auto;
	}
	
	body>div:first-child {
		width: 100%;
		margin-top: 120vw;
	}
	
	body>div:first-child>a {
		width: 100%;
		margin-top: -10vw;
	}
}