@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;800&display=swap');

html, body {
	margin: 0;
	height: 100%;
	width: 100%;
	font-family: 'Open Sans', sans-serif;
}

.header {
	width: 100%;
	height: 75px;
	background: #175da3;
	color: white;
	position: fixed;
	top: 0;
	z-index: 5;
}

.header-container {
	width: 80%;
	height: 100%;
	margin: auto;
}

.header-content {
	width: 100%;
	position: relative;
	top: 50%;
	transform: translateY(-50%);
	display: flex;
	justify-content: space-between;
	font-size: 25px;
	font-family: 'Open Sans', sans-serif;
	font-weight: 800;
	z-index: 20;
}

.main {
	width: 100%;
	height: 100%;
}

.main-header {
	width: 100%;
	height: 60%;
	background: #175da3;
	z-index: 30;
}

.main-header-content {
	width: 50%;
	margin: auto;
	position: relative;
	top: 50%;
	transform: translateY(-50%);
	z-index: 30;
}

.main-header-content>img {
	width: 90%;
}

.main-header-content>div {
	width: 100%;
	color: white;
	text-align: center;
	font-size: 35px;
	font-weight: 800;
}

.main-content-left, .main-content-right {
	width: 50%;
	margin-top: 50px;
	text-align: center;
}

.main-content-left {
	float: left;
}

.main-content-right {
	float: right;
}

.content-section {
	position: relative;
	left: 50%;
	transform: translateX(-50%);
	width: 90%;
	border: solid grey 1px;
	padding: 20px;
	margin-bottom: 5px;
	z-index: 1;
}

.content-header {
	font-size: 35px;
	font-weight: 400;
	margin-bottom: 10px;
}

.content-text {
	color: #333333;
}

.gif-container {
	width: 100%;
	display: flex;
	justify-content: center;
}

.gif-container>div {
	width: 80%;
	padding: 10px;
	text-align: center;
}

.gif-container>div>img {
	width: 90%;
}

.gif-header {
	font-size: 25px;
	font-weight: 400;
}

th, td {
	text-align: center;
}

th {
	background: lightgray;
}

.code-container {
	background: #eeeeee;
	width: 100%;
	overflow-x: auto;
	text-align: left;
}

.button {
	width: 50%;
	height: 50px;
	background: gray;
	color: white;
	text-align: center;
	margin: auto;
}

.button>div {
	position: relative;
	top: 50%;
	transform: translateY(-50%);
	text-decoration: none;
	width: 100%;
}

.leaderboard-table, .leaderboard-container {
	width: 100%;
}

code {
	text-align: left;
}


@media only screen and (max-width: 1070px)  {
	.main-content-left, .main-content-right {
		float: none;
		margin: auto;
		position: relative;
		top: 20px;
		width: 90%;
	}
}

@media only screen and (max-width: 1020px)  {
	.title {
		font-size: 25px !important;
	}
}
