@font-face {
    font-family: 'Gotham Greek';
    src: url('GothamGreek-Bold.woff2') format('woff2'),
        url('GothamGreek-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

body{
	margin:0;
	text-align:center;
	font-family: 'Gotham Greek';
	font-weight: bold;
  font-style: normal;
	background:url(background.jpg) no-repeat center;
	background-size:cover;
	min-height:100vh;
}

*{
	box-sizing:border-box;
}

.content{
	min-height:100vh;
	position:relative;
}

.logo{
	position:absolute;
	bottom:50%;
	left:0;
	width:100%;
	text-align:center;
	padding:0 15px;
}

img{
	max-width:100%;
	height:auto;
}
.contact{
	position:absolute;
	left:0;
	bottom:10%;
	width:100%;
	text-align:center;
	padding:0 15px;
}

a{
	text-decoration:none;
	color:#fff;
	font-size:28px;
	transition:all 0.2s;
	-moz-transition:all 0.2s;
	-webkit-transition:all 0.2s;
}

a:hover{
	color:#00A146;
}

@media all and (max-width:540px){
	a{

		font-size:20px;
	}
}