body {
	overflow-x: hidden;
}
main {
	background:#ffffff;
	width: 100%;
	display: flex;
	align-content:center;
	align-items: center;
	width: 100%;
	min-height: 100vh;
	font-family: 'Courier New', Courier, monospace;
	font-weight: 400;
	font-size: 13px;
	line-height: 24px;
	padding:45px 30px ;
	box-sizing: border-box;
}

.content {
 margin: 0 auto;
 max-width:700px;
 text-align: center;
}

.text {
	margin:30px 0;
}

.logo {
	width: 60%;
	max-width:220px;
	margin: 0 auto;
}

.logo  img {
	width: 100%;
	display: block;
	animation-name: floating;
	animation-duration: 5s;
	animation-iteration-count: infinite;
	animation-timing-function: ease-in-out;
}

@keyframes floating {
    from {
        transform: translate(0, 0px);
    }

    50% {
        transform: translate(0, 10px);
    }

    to {
        transform: translate(0, -0px);
    }
}


.email a {
	text-decoration: none;
	color: black;
	position: relative;
}

.email a:after {
	width: 100%;
	height: 1px;
	background: black;
	content: '';
	position: absolute;
	left: 0;
	bottom:-2px;
	transition: all 0.3s;
	transform: scale(0,0);
}

.email a:hover:after {
	transform: scale(1,1);
}

@-webkit-keyframes AnimateIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes AnimateIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.logo img {
	width:100%;
	height:100%;
}
