body, html{
	margin: 0;
	height: 100%;
	width: 100%;
	background: rgb(133,165,255);
	background: linear-gradient(0deg, rgba(133,165,255,1) 0%, rgba(255,193,143,1) 84%);
}

body{
	display: flex;
	flex-direction: row;
}

.in{
	margin-left: 200px;
	position: relative;
	font-family: chivo;
	font-size: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #FFEEE6;
	background: rgb(30,65,255);
	background: radial-gradient(circle, rgba(30,65,255,1) 0%, rgba(193,209,255,0) 62%);
	width: 100px;
	height: 100px;
	padding: 50px;
	animation: breathein 24s linear 0s infinite normal both;
}

@keyframes breathein{

	0% {
		transform: translateY(0);
	}
	16.7% {
		transform: translateY(calc(-100vh + 200px));		
	}
	33.3% {
		transform: translateY(calc(-100vh + 200px));		
	}
	49.9% {
		transform: translateY(calc(-100vh + 200px));
	}
	66.6% {
		transform: translateY(0);
	}
	83.3% {
		transform: translateY(0);
	}
}


.breathe{
	font-family: chivo;
	font-size: 40px;
	color: blue;
	text-align: center;
	width: 200px;
	padding: 20px;
	margin: auto;
}

.out{
	margin-right: 200px;
	font-family: chivo;
	font-size: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #FFEEE6;
	background: rgb(255,63,30);
	background: radial-gradient(circle, rgba(255,63,30,1) 0%, rgba(255,233,193,0) 62%);
	width: 100px;
	height: 100px;
	padding: 50px;
	position: relative;
	animation: breathein 24s linear 0s infinite normal both;
	animation-delay: 6s;
}
.flex {
	display: flex;
	align-items: flex-end;
}

.linkit {
	height: 100vh;
	width: 100vw;
	position: absolute;
	top: 0;
	left: 0;
	display: flex;
}
.linkki{
	flex: 1;
}
