* {
	margin: 0;
	padding: 0;
	border: 0;
	height: 100%;
	width: 100%;
	box-sizing: border-box;
	color: white;
}

body {
	background-color: #2b2f33;
}

input {
	display: none;
}

.Tab {
	float: left;
	height: calc(94% - 20px);
	padding: 10px;
}

.Page {
	float: left;
	padding: 1%;
}

.Page:hover {
	border: 3px solid #3bade9;
	border-radius: 15px;
	background-color: #305568;
	padding: calc(1% - 3px);
}

.Page:hover img {
	animation: rotation 2s infinite linear;
}

.Tab1 {
	height: calc(100% / 4);
	width: calc(100% / 3);
}

.Tab2 {
	height: calc(100% / 3);
	width: calc(100% / 2);
}

.Tab3 {
	height: calc(100% / 2);
	width: calc(100% / 2);
}

.Tab4 {
	height: calc(100% / 2);
	width: calc(100% / 1);
}

@keyframes rotation {
	from {
		transform: rotate3d(0, 1, 0, 0deg);
	}
	to {
		transform: rotate3d(0, 1, 0, 359deg);
	}
}

img {
	height: 80%;
	display: block;
	object-fit: contain;
}

a {
	color: inherit;
	text-decoration: none;
}

p {
	color: inherit;
	font-size: min(3vh, 1.75vw);
	display: flex;
	justify-content: center;
	align-items: center;
	height: 20%;
}

label {
	height: 5%;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 13%;
	float: left;
	margin-left: 10px;
	margin-top: 10px;
	margin-bottom: 10px;
	font-size: min(3vh, 1.75vw);
}

label:hover {
	border: 3px solid #3bade9 !important;
	border-radius: 15px;
	background-color: #305568 !important;
}

input[type="radio"]:checked+label {
	border: 3px solid #34799f;
	border-radius: 15px;
	background-color: #2a4350;
}

hr {
	background-color: #55585b;
	height: 2px;
	width: calc(100% - 20px);
	margin: auto;
}
