/*Global*/
.navbar {
	display: flex;
	background-color: #e0e0e0;
	height: 7.5vh;
	width: 100%;
	align-items: center;
	padding-left: 1vw;
	margin-bottom: 5vh;
}
.navbarElement {
	margin: 5px;
	font-size: larger;
}

body {
	margin: 0px;
	background-color: #f5f5f5;
}
a {
	color: black;
	text-decoration: none;
}

h1 {
	text-decoration: underline;
	margin-top: 0;
	text-align: center;
	color: #333333;
}

a:visited {
	color: black;
}

.sidebar {
	width: 100%;
	/*background-color: #d32424;*/
	min-height: 100%;
}

table,
th,
td {
	border: 1px solid black;
	border-collapse: collapse;
}

.grayscale {
	filter: grayscale(100%);
}

/*Home Page*/
.homeLayoutContainer {
	display: grid;
	grid-template-columns: 1fr 10fr 1fr;
}

.homeTwoObjectContainer,
.resultsTwoObjectContainer {
	display: grid;
	grid-template-columns: 1fr 1fr;
	/*background-color: blue;*/
	height: 45vh;
	margin: 5vh;
	margin-top: 0vh;
}

.homeUpcomingContainer {
	display: grid;
	place-items: center;
}

.card {
	display: grid;
	place-items: center;
	height: 45vh;
	width: 45vh;
	background-color: #ffffff;
	border-radius: 10%;
}

.card img {
	align-items: center;
	display: inline-block;
	max-width: 100%;
	max-height: 100%;
	margin: 0px;
	border-radius: 5%;
}

.card p {
	white-space: nowrap;
	align-self: start;
}

.card h1 {
	white-space: nowrap;
}

.article {
	/*background-color: pink;*/
	display: grid;
	place-items: center;
}

/*Rotation*/

.galleryContainer {
	display: flex;
	flex-wrap: wrap;
}

.galleryItem {
	flex: 0 0 calc(12.5% - 10px);
	box-sizing: border-box;
	margin: 5px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	width: 100%;
}

.galleryItem img {
	object-fit: contain;
	aspect-ratio: 1 /1;
	width: 100%;
}

.resultsLayoutContainer {
	display: grid;
	grid-template-columns: 1fr 10fr 1fr;
}
/*
.upcomingLink {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	max-height: 50%;
}









/*Results Page*/

/*
.selectedBossContainer {
	display: grid;
	place-items: center;
}
*/
.selectedBossContainer .card h1 {
	white-space: normal;
}

.resultsTable {
	width: 100%;
	white-space: nowrap;
	background-color: white;
}

.resultsTable img {
	max-height: 100%;
	vertical-align: middle;
}

.resultsTable td {
	text-align: left;
	vertical-align: middle;
	height: 5vh;
}
/*
.galleryContainer {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	background-color: lightblue;
	min-height: 100vh;
}
.galleryCard {
	display: flex;
	height: 30vh;
	justify-content: center;
	align-items: center;
	border: 10px solid;
	border-color: red;
}
.galleryCardImg {
	width: 90%;
}
*/
/*Tab*/
/* Style the tab */
.tab {
	overflow: hidden;
	border: 1px solid #ccc;
	background-color: #f1f1f1;
}

/* Style the buttons that are used to open the tab content */
.tab button {
	background-color: inherit;
	float: left;
	border: none;
	outline: none;
	cursor: pointer;
	padding: 14px 16px;
	transition: 0.3s;
}

/* Change background color of buttons on hover */
.tab button:hover {
	background-color: #ddd;
}

/* Create an active/current tablink class */
.tab button.active {
	background-color: #ccc;
}

/* Style the tab content */
.tabcontent {
	display: none;
	padding: 6px 12px;
	border: 1px solid #ccc;
	border-top: none;
}

.article h1 {
	text-align: center;
	text-decoration: none;
}
