@-webkit-keyframes rotating {
    from{
        -webkit-transform: rotate(0deg);
    }
    to{
        -webkit-transform: rotate(360deg);
    }
}

.rotating {
    -webkit-animation: rotating 60s linear infinite;
}
.rotatingreverse {
    -webkit-animation: rotating 60s linear infinite;
	animation-direction: reverse;
}

body,html {
	margin: 0;
	padding: 0;
}

.maincontainer {
	position: absolute;
	width:100%;
	height: 100%;
	display:flex;
	flex-direction: column;
	flex: 1 1 auto;
}
.hexagramcontainer {
	text-align: center;
	height:30rem;
}
.hexagram {
	max-height: 100%;
	max-width: 100%;
	min-height: 5%;
	min-width: 5%;
    position: absolute;
    top: 20%;
    left: 37.5%;
}
.hexagrambig {
	width: 25%;
}
.hexagramsmall {
	width: 20%;
    margin-left: 2.5%;
    margin-top: 2.5%;
}