@import url('https://fonts.googleapis.com/css2?family=Anton&family=Ubuntu:wght@300;400;500&display=swap');* {
	outline:none;
	box-sizing: border-box;
	list-style-type:none;
	margin:0px;
	padding:0px;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	font-smoothing: antialiased;
	text-decoration:none;
}
body,html {
	font-family: 'Ubuntu', sans-serif;
	font-size:18px;	
	min-width:100%;
	min-height:100%;
	height:100%;
	width:100%;
	background-color:#000;
	display:flex;
	align-items:center;
	justify-content:center;
	flex-direction: column;
	}	
.collapse-80 {
    margin: 0 auto;
    width: 80%;
}	

.logo {
	margin-bottom:20px;
	margin-top:20px;
	display:flex;
	align-items:center;
	justify-content: center;
	width:100%;
	text-align:center;
	
	}
.logo img{
	width:100%;
	max-width:300px;
	}	
.main {
	color:#fff;
	width:100%;
	text-align:center;
	}
@media only screen and (max-width:875px)
{

.collapse-80 {
    width: 90%;
}	

}