/* CSS Document */
/* julianne aguilar
hyperloneliness
juliannes.website
2021 */

body, html {
	min-height: 100%;
}

body {
	margin: 0;
	padding: 0;
	background-color: #5870D7;
}

#container {
	height: 100vh;
	width: 100vw;
	padding: 0;
	margin: 0;
	overflow: hidden;
}


.top {
	position: relative;
	height: 20vh;
	width: 100vw;
	background-color: #42DDDB;
	animation: ani1 60s ease 5s infinite alternate;
}

/* .page {
	width: 100vw;
	height: 80vh;
	display: flex;
	flex-direction: row;
	overflow: hidden;
	padding: 0;
	margin: 0;
} */

.sidebar {
	position: relative;
	width: 30vw;
	height: 80vh;
	background-color: #DE86C2;
	animation: ani2 60s ease 5s infinite alternate;
	float: left;
}

.main {
	position: relative;
	width: 70vw;
	height: 80vh;
	background-color: #5870D7;
	display: flex;
	justify-content: center;
	align-items: center;
	float: right;
	z-index: -1;
}

img {
	max-width: 100%;
}

.main div {
	max-width: 50%;
}

@keyframes ani1 {
	100% { transform: skew(100deg, 180deg); }
}

@keyframes ani2 {
	100% { transform: skew(40deg, 80deg); }
}