/* Fonts */

@import url('https://fonts.googleapis.com/css?family=Fira+Sans:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i');

/* Global */

* {
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}

body {
	margin: 0;
	padding: 0;
	font-family: 'Fira Sans', sans-serif;
	line-height: normal;
	font-size: 16px;
	background-color: #000;
}

img {
	max-width: 100%;
}

.clearfix::after {
	content: "";
	clear: both;
	display: table;
}

.wtfnft-logo-container {
	display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
	width: 100%;
	position: fixed;
	padding: 0 30px;
}

.wtfnft-logo img {
	max-height: 50vh;
	width: auto;
}

/* Responsive */

@media (max-width: 768px){

	.wtfnft-logo img {
		max-height: unset;
		max-width: 55vw;
	}

}