.astro_container{
	width: auto;
	height: auto;
	display: inline;
	padding: 1%;
}

#super{
	display: flex;
	width: 100%;
	height: 90vh;
}

.astro_symbols{
	background-color: #e9d4cf;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 4vh;
	height: 4vh;
	min-width: 4vh;
  	min-height: 4vh;
}

.icon{
	display: block;
	z-index: 1;
	width: inherit;
	height: inherit;
}

#central{
	width: 60vh;
	height: 100%;
	text-align: center;
	margin-right: 5%;
}

#welcome{
	width: 40vh;
	height: 100%;
	text-align: center;
}

#chart_container{
	width: 60vh;
	height: 60vh;
	transform-origin: center;
	-webkit-transform-origin: center;
	-ms-transform-origin: center;
}

#astrology_chart{
	width: 100%;
	height: 100%;
	position: relative;
	z-index: 0;
}

#button_controls{
	margin-top: 20%;
	display:inline-block;
}

#button_controls button{
	width: 4vh;
	height: 4vh;
	margin: 1vw;
	font-size: 150%;
}

@media only screen and (max-width: 720px) {
	#super{
		display: block;
		width: 100%;
		height: auto;
	}

	#welcome{
		width: 60vh;
		height: auto;
		text-align: center;
	}

	.astro_container{
		width: 10%;
		height: 10%;
		display: flex;
		padding: 0%;
	}

	.astro_symbols{
		background-color: #e9d4cf;
		display: flex;
		align-items: center;
		justify-content: center;
		width: 6vh;
		height: 6vh;
		min-width: 6vh;
  		min-height: 6vh;
	}

}