.box{
	width: 300px;
	height:200px;
	margin: 0 auto;
	text-align:center;
}

.box img {
	width: 85px;
	margin-top: 200px;
}
		
.box-text {
	font-family: 'Letter Gothic Std';
	padding: 5%;
	color:#FFF;
}

.mouse {
	-webkit-animation: floating-animation 5s ease-in-out infinite;
	-o-animation: floating-animation 5s ease-in-out infinite;
	animation: floating-animation 5s ease-in-out infinite;
}

@keyframes floating-animation {
	
	0% { 
	
	-webkit-transform: translateY(0);
	-moz-transform: translateY(0);
	-ms-transform: translateY(0);
	-o-transform: translateY(0);
	transform: translateY(0);
	}
	
	50% { 
	
	-webkit-transform: translateY(-20px);
	-moz-transform: translateY(-20px);
	-ms-transform: translateY(-20px);
	-o-transform: translateY(-20px);
	transform: translateY(-20px);
	}
	
	100% { 
	
	-webkit-transform: translateY(0);
	-moz-transform: translateY(0);
	-ms-transform: translateY(0);
	-o-transform: translateY(0);
	transform: translateY(0);
	}
	
}

@font-face {
    font-family: 'Letter Gothic Std';
    src: url('Fonts/LetterGothicStd.eot?#iefix') format('embedded-opentype'),
        url('Fonts/LetterGothicStd.woff2') format('woff2'),
        url('Fonts/LetterGothicStd.woff') format('woff'),
        url('Fonts/LetterGothicStd.ttf') format('truetype'),
        url('Fonts/LetterGothicStd.svg#LetterGothicStd') format('svg');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Letter Gothic Std';
    src: url('Fonts/LetterGothicStd-Bold.eot');
    src: url('Fonts/LetterGothicStd-Bold.eot?#iefix') format('embedded-opentype'),
        url('Fonts/LetterGothicStd-Bold.woff2') format('woff2'),
        url('Fonts/LetterGothicStd-Bold.woff') format('woff'),
        url('Fonts/LetterGothicStd-Bold.ttf') format('truetype'),
        url('Fonts/LetterGothicStd-Bold.svg#LetterGothicStd-Bold') format('svg');
    font-weight: bold;
    font-style: normal;
}
