﻿html{
	height: 100%;
}
body{
	font-family: Montserrat;
	min-height:100%;
	margin: 0px;
	padding: 0px;
	display: table;
	width: 100%;
	background-color: var(--background-color);
	color: var(--white-color);
}

li{
	list-style:none;
}

a{
	text-decoration: none;
	color: var(--white-color);
	font-size: 1rem;
}

a:hover{
	color: var(--official-color);
}

header{
	padding: 0 2rem;
}

.content{
	width: 100%;
	height: 60px;
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1rem;
}

.content .links{
	display: flex;
	gap: 2rem;
}

.logo{
	width: 13rem;
	height: 5rem;
	position: relative;
	top: 0rem;
}

.nav-bar{
	padding-top: 8px;
	/* border-bottom-style: solid; */
	/* border-image: linear-gradient(90deg,rgba(56, 209, 0, 1) 0%, rgba(56, 255, 139, 1) 50%, rgba(6, 171, 0, 1) 100%) 30 stretch; */
	display: flex;
	position: fixed;
	z-index: 1;
	width: 100%;
	background-color: var(--background-color);
}

.h1_1{
	text-align: center;
}

.games_or_programs{
	margin: auto;
	align-content: center;
	width: 60%;
	padding-top: 17px;
	padding-left: 12px;
}

footer{
	height: 80px;
	border-top-style: solid;
	border-image: linear-gradient(90deg,rgba(56, 209, 0, 1) 0%, rgba(56, 255, 139, 1) 50%, rgba(6, 171, 0, 1) 100%) 30 stretch;
	margin-top: 10px;	
	display: table-row;
}

.social_links{
	position: relative;
	display: flex;
	gap: 17%;
	width: 100%;
	justify-content: center;
	align-items: center;
	padding-left: 0px
}

.social_links img{
	height: 25px;
}

.social_links_div{
	margin-top: 10px;
	/*border-top-style: solid;
	border-image: linear-gradient(90deg,rgba(56, 209, 0, 1) 0%, rgba(56, 255, 139, 1) 50%, rgba(6, 171, 0, 1) 100%) 30 stretch;*/
}

.social_links_centered {
	margin: auto;
	width: 60%;
}

.social_links_single_link {	
  width: 115px;
}

.social_links_text {
  font-weight: normal;
  position: relative;
  top: -8px;
  left: 10px;
}

span{
	/* font-weight: bold;*/
}

.main_img{
	width: 100%;
	height: auto;
	display: flex;
}

main{
	height: 1%;
}
.header {
	display: flex;
	justify-content: center;
	gap: 2rem;
	margin-top: 20px;
	margin-bottom: 20px;
	text-align: center;
}
.header img {
	width: 250px;
}
.header_text{
	width: 750px;
}
.start{
	display: block;
	text-align: center;
	margin-top: 50px;
	margin-bottom: 20px;
}
.top_spacer{	
	margin-top: 120px;
}

.cards{
	padding: 25px;
	background-color: var(--cards-background-color);
	border-radius: 11px;
	border: var(--cards-shadow-color) solid 1px;
}

.cards_horizontal{
	width: 23%;
	height: 14rem;
}

.cards_vertical{
	width: 90%;
	height: auto;
	margin-bottom: 10px;
}

.cards:hover{
	border-color: var(--official-color);
	box-shadow: 0 0 11px var(--official-color);
}

.cards_icon {
	margin-bottom: -12px;
	border: solid 1px var(--blue-color);
	padding: 10px;
	border-radius: 7px;
}

.card_title {
	font-size: 2rem;
	font-weight: bold;
}
.justified {
	display:flex;
	justify-content: space-between;

}
.card_title .date {
	font-size: 1rem;
	font-weight: normal;
}

.button_link {
	background: none;
	border: none;
	color: var(--white-color);
}

.button_link:hover {
	color: var(--official-color);
}

.site_title {
	margin-top: 1rem;
	font-size: 2rem;
	font-weight: bold;
	color: var(--official-color);
}
.cards_wrapper {
	display: flex;
	justify-content: center;
	gap: 2rem;
}
.cards_wrapper_vertical {
	justify-content: left;
	margin-left: 100px;
	display: block;
}

.cards_wrapper_horizontal_left {
	justify-content: left; 
	margin-left: 100px;
	height: 29rem;
}

.clearfix::after {
  content: "";
  clear: both;
  display: table;
}

#themes{
	height: 40px;
	width: 40px;
	padding: 0px;
	background: none;
	display: flex;
	justify-items: center;
	align-items: center;
	position:fixed;
	border: none;
	top: 35px;
	color: var(--white-color);
}

#themes:hover{
	color: var(--official-color);
}

#themes svg:last-child{
	display: none;
}

.light #themes svg:first-child{
	display: none;
}

.light #themes svg:last-child{
	display: block;
}

:root{
	--official-color: #00e106;
	--blue-color: #0099ff;
	--background-color: #101010;
	--white-color: #e8e8e8;
	--cards-background-color: #161616;
	--cards-shadow-color: #202020;
}

.light{
	--official-color: #00e106;
	--blue-color: #0099ff;
	--background-color: #f5f5f5;
	--white-color: #363636;
	--cards-background-color: #fbfbfb;
	--cards-shadow-color: #fbfbfb;
}