#solar {
	position: fixed;
	top:0;
	left:0;
	right:0;
	bottom:0;
	background-image: url('../img/kosmos.gif');
	overflow: auto;
	display: grid;
	grid-template-columns: 20% 20% 20% 20% 20%;
	column-gap: 0;
	align-items: center;
	text-align: center;
}
#solar img {
	display: block;
	width:50%;
	height:50%;
	object-fit: contain;
	margin-left: auto;
	margin-right: auto;
	margin-top: auto;
	margin-bottom: 1px;
}
#solar a {color: white}
#solar a:hover {color: yellow}
#solar a:hover img {
	filter: brightness(110%);
}
#hortitle {
	text-align: center;
	background-image: url('../Planeedid/bluesun.webp');
	background-repeat: no-repeat;
	background-position: center; 
	background-size: contain;
	grid-column: 2 / 5;
	height: 100%;
	display: grid;
	grid-template-columns: 100%;
	align-items: center;
	font-size: 32pt;
	font-weight: bold;
	letter-spacing: 0.1em;
	text-shadow: 1px 1px 2px #111;
}

@media (orientation: portrait) {
	#solar {
		grid-template-columns: repeat(2, 50%);
		grid-template-rows: repeat(4, 25%);
	}
	/*#solar div.last {
		grid-column: 1 / 3;
	}*/
	#solar div {
	   height: 100%;
    }
	#solar div:empty {
       display: none;
    }
	#solar img {
		width: auto;
		height: 80%;
	}
	#hortitle {
		display: none;
	}
}