body,
html {
    width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

p {
    font-size: 19px;
    font-weight: 400;
    color: rgb(140, 147, 161);
}

@keyframes float {
	0% {
        transform: rotate(10deg);
        transform: scale(1.0);
		transform: translatey(0px);
	}
	50% {
        transform: rotate(-10deg);
        transform: scale(0.92);
		transform: translatey(30px);
	}
	100% {
        transform: rotate(10deg);
        transform: scale(1.0);
		transform: translatey(0px);
	}
}

.icon {
    display: block;
    margin: 0 auto;
	width: 400px;
	height: 400px;
	overflow: hidden;
	transform: translatey(0px);
	animation: float 4s ease-in-out infinite;
	img { width: 100%; height: auto; }
}

.content {
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
