html, body {
	height: 100%
}

.main {
	height: 100vh;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.boom {
	max-width: 800px;
	min-height: 400px;
}

h1 {
	margin: 0 0 40px;
}

p {
	margin: 0 0 40px;
}

.email {
	color: #000000;
	display: inline-block;
	border-bottom: 2px solid #000000;
}

a:hover {
	text-decoration: none;
	color: #ccc;
}

address {

}

@keyframes twitch {
	0% {height: 140px}
	40% {height: 100px}
	80% {height: 150px}
	100% {height: 90px}
}

.emoji-frame {
	height: 150px;
	display: flex;
	align-items: flex-end;
}

.emoji {
	font-size: 60px;
	margin: 0;
	display: block;
	width: 100%;
}

.emoji:hover {
	animation: twitch 0.50s ease-in-out 0s 1 alternate;
	animation-iteration-count: infinite;
	position: relative;
	height: 150px;
	cursor: pointer;
}

