/*General Styling*/
body {
    background-color: #181818;
    font-family: Titillium Web, Arial, Helvetica, sans-serif;
    margin: 16px;
}

h1 {
    font-size: 32px;
    color: #ffffffe6;
    color: rgba(255,255,255,0.9);
}

h2 {
	font-size: 28px;
    color: #ffffffe6;
	color: rgba(255,255,255,0.9);
}

h3 {
	font-size: 20px;
	font-weight: normal;
	margin: 0px;
	padding: 0px;
}

p {
    color: #ffffffb3;
    color: rgba(255,255,255,0.7);
}

main {
    margin-bottom: 32px;
}

/*Desktop Navigation Menu Mobile Styling*/
.desktop-nav {
	display: none;
}

/*Mobile Navigation Menu Mobile Styling*/
.mobile-nav {
	overflow: hidden;
	position: relative;
}
.mobile-nav #mobile-nav-links {
	display: none;
}
.mobile-nav a {
	display: block;
    color: #ffffffe6;
	color: rgba(255,255,255,0.9);
	padding: 16px 16px;
	text-decoration: none;
	font-size: 16px;
}
#mobile-nav-links ul {
    list-style-type: none;
    margin: 0px;
    padding: 0px;
}
.mobile-nav-icon {
	display: block;
	position: absolute;
	right: 0;
	top: 0;
}
.logo {
	width: 128px;
} 

.heading div {
	font-size: 24px;
	font-weight: normal;
}

#active-nav-link {
	font-weight: bolder;
}

/*Alphabet Navigation Menu Mobile Styling*/
.alphabet-nav-container {
	display: grid;
	grid-template-columns: repeat(9, 1fr);
	grid-gap: 12px;
	row-gap: 12px;
	justify-items: center;
	background-color: #202020;
	border-radius: 12px;
	box-shadow: 12px 12px 0px black;
	padding: 12px;
}
.alphabet-nav-container div {
	margin: 0px;
	padding: 0px;
}
.alphabet-nav-container a {
	text-decoration: none;
	color: #ffffffe6;
	color: rgba(255,255,255,0.9);
	font-size: 24px;
}
i {
    color: #ffffffb3;
	color: rgba(255,255,255,0.7);
}

/*Game List Styling*/
.game-list {
	list-style-type: none;
	margin: 0px;
	padding: 0px;
}
.game-list li {
    margin: 0px;
	padding: 0px;
	background-color: #202020;
	border-radius: 12px;
	box-shadow: 6px 6px 0px black;
}
.game-list li a {
    display: block;
    padding: 12px;
	color: #ffffffe6;
	color: rgba(255,255,255,0.9);
	text-decoration: none;
	border-radius: 12px;
}
.game-list li:hover {
	transform: scale(1.01);
	transition: 0.3s;
}
.game-list li a:hover {
	color: Violet;
	transition: 0.3s;
}
.game-list li a:active {
	color: LightPink;
	transition: 0.3s;
}

/*Footer Section Mobile Styling*/
footer {
	color: #ffffffe6;
	color: rgba(255,255,255,0.9);
	
}
.footer-links {
	display: flex;
    padding: 0;
    list-style-type: none;
}
.footer-links li {
	margin: 4px;
}
.footer-child-2 {
	display: none;
}

/* Social Media Icon Styling*/
.fa-bars {
	color: #ffffffe6;
    color: rgba(255,255,255,0.9);
}
.fa {
	padding: 0px;
	margin: 4px;
	font-size: 16px;
	text-align: center;
	text-decoration: none;
}
.fa-kit {
   	padding: 0px;
	margin: 4px;
	font-size: 16px;
	text-align: center;
	text-decoration: none; 
}
.fa:hover {
	color: Violet;
	transition: 0.3s;
}
.fa-kit.fa-patreon:hover {
 	color: Violet;
	transition: 0.3s;   
}
.fa-kit.fa-buymeacoffee:hover {
 	color: Violet;
	transition: 0.3s;   
}
.fa:active {
	color: LightPink;
	transition: 0.3s;
}
.fa-kit.fa-patreon:active {
   	color: LightPink;
	transition: 0.3s; 
}
.fa-kit.fa-buymeacoffee:active {
   	color: LightPink;
	transition: 0.3s; 
}
.fa-kit.fa-patreon {
    color: #ffffff66;
	color: rgba(255,255,255,0.40);
}
.fa-kit.fa-buymeacoffee {
    color: #ffffff66;
	color: rgba(255,255,255,0.40);
}
.fa-paypal {
    color: #ffffff66;
	color: rgba(255,255,255,0.40);
}
.fa-youtube {
    color: #ffffff66;
	color: rgba(255,255,255,0.40);
}

/*Underline Animation on Hover Styling*/
.hover-underline-animation {
	display: inline-block;
	position: relative;
    color: #ffffffe6;
	color: rgba(255,255,255,0.9);
	text-decoration: none;
	font-style: normal;
}
.hover-underline-animation:hover {
	color: Violet;
	transition: 0.3s;
}
.hover-underline-animation::after {
	content: '';
	position: absolute;
	width: 100%;
	transform: scaleX(0);
	height: 2px;
	bottom: 0;
	left: 0;
	background-color: Violet;
	transform-origin: bottom right;
	transition: transform 0.3s ease-out;
}
.hover-underline-animation:hover::after {
	transform: scaleX(1);
	transform-origin: bottom left;
}
.hover-underline-animation:active {
	color: LightPink;
}

/*Tablet Breakpoint*/
@media screen and (min-width: 600px) {
    body {
        margin: 24px;
    }
	
	/*Footer Section Tablet Styling*/
	.footer-container {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		grid-gap: 12px;
		row-gap: 12px;
		align-items: center;
		justify-content: space-between;	
	}
	.footer-child-2 {
		display: flex;
		justify-content: flex-end;
	}
	.footer-child-2 img {
	    width: 256px;
	}
}

/*Desktop Breakpoint*/
@media screen and (min-width: 768px) {
    body {
        margin: 32px;
    }
    
	/*Mobile Navigation Menu Desktop Styling*/
	.mobile-nav {
		display: none;
	}
	
	/*Desktop Navigation Menu Desktop Styling*/
	.desktop-nav {
		display: flex;
		justify-content: flex-start;
		align-items: center;
		padding: 16px 16px;
	}
	.desktop-nav li {
		display: inline-block;
		margin: 8px;
	}
	
	/*Footer Section Desktop Styling*/
	.footer-container {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		grid-gap: 12px;
		row-gap: 12px;
		align-items: center;
		justify-content: space-between;	
	}
	.footer-child-2 {
		display: flex;
		justify-content: flex-end;
	}
	.footer-child-2 img {
	    width: 256px;   
	}
}