body{
    margin: 0 auto;
    padding: 0;
	min-height: 100vh;
	background-color: rgba(0,0,25,1);
	background-image: linear-gradient(40deg, rgb(0,0,35), rgb(0,0,55));
	font-family: 'Josefin Sans', sans-serif;
	font-size: 1.05em;
	color: white;
}

main{
	padding: 0 4%;
	flex: 1;
}

section{
	padding: 2em;
	background-color: steelblue;
	background-image: linear-gradient(40deg, indigo, steelblue);
	border-radius: 2em;
	max-width: 60em;
	margin: 1.5em auto;
}

h1{
	font-size: xxx-large;
}

h2{
	font-size: xx-large;
}

h3 {
	font-size: x-large;
}

a{
	text-decoration: underline;
}

img {
  width: 100%;
  height: auto;
}

blockquote{
	padding: 10px 20px;
	margin: 0 0 20px;
	border-left: 7px solid #dedede;
	background-color: #88888888;
	border-radius: 7px;
	color: white;
}

blockquote.warning {
	border-left: 7px solid #ffc107;
	background-color: #b3860088;
	color: #ffc107;
}

blockquote.danger {
	border-left: 7px solid #dc3545;
	background-color: #f5526288;
	color: #dc3545;
}

blockquote.success {
	border-left: 7px solid #28a745;
	background-color: #39e15f88;
	color: #28a745;
}

table{
	width: 100%;
	max-width: 100%;
	margin-bottom: 20px;
}

table > thead > tr > th {
	vertical-align: bottom;
	border-bottom: 2px solid #ddd;
}

table > tbody > tr > td {
	padding: 8px;
	line-height: 1.5em;
	vertical-align: top;
	border-top: 1px solid #ddd;
}

table > tbody > tr:nth-child(odd) > td {
	background-color: rgb(204, 204, 214);
	color: #333;
}

table > tbody > tr:nth-child(even) > td {
	background-color: rgba(204, 204, 214, 0.5);
	color: #333;
}

hr {
	margin: 1.5em 0;
	border-top: 1px solid rgb(114, 114, 114, 0.2);
}

header{
	position: sticky;
	top: 0;
	z-index: 999;
	padding: 0 4%;
}

nav {
	padding: 1em 2em;
	display: flex;
	justify-content: space-between;
	background: linear-gradient(40deg, indigo, steelblue);
	border-bottom-left-radius: 1em;
	border-bottom-right-radius: 1em;
	max-width: 60em;
	margin: 0 auto;
	box-shadow: 0 0 25px black;
}

nav a, nav a:link nav a:visited{
	color: white;
}

article a, article a:link, article a:visited{
	color: black;
}

footer {
	padding: 0 4%;
	z-index: 999;
}

footer div.nav{
	padding: 1em 2em;
	display: flex;
	justify-content: space-between;
	background: linear-gradient(40deg, indigo, steelblue);
	border-top-left-radius: 1em;
	border-top-right-radius: 1em;
	max-width: 60em;
	margin: 0 auto;
	align-items: center;
	flex-wrap: wrap;
}

.small-logo {
	width: 1.25em;
	height: auto;
	vertical-align: bottom;
}

.navbar-item a{
	text-decoration: none !important;
}

.hamburger-icon{
	display:none;
	border:none;
	background-color:transparent;
}

.navbar-start{
	margin: 0;
}

.navbar-start input[type="checkbox"]{
	display: none;
}

.navigation {
  display: flex;
  gap: 1rem;
  list-style: none;
  padding: 0;
  margin: 0;
}



@media screen and (max-width: 600px){
	.navbar-start{
		display: flex;
		justify-content: space-between;
		margin: 0;
	}
	nav{
		display: block;
	}
	header nav .navigation{
		height:0;
		overflow:hidden;
		flex-direction: column;
		align-items: center;
		transition: all 0.2s ease;
		margin: 0;
	}
	.hamburger-icon {
		display: block;
		color: white;
    }
  
  .hamburger-icon .fa-xmark{
	  display: none;
  }

/*determining whether the header contains a checkbox input that is checked before expanding the navigation's height to 100 pixels to make it visible.*/
  header:has(.hamburger-icon input[type="checkbox"]:checked) .navigation {
    margin-top: 1rem;
    height:auto;
  }

/* Hiding the bars icon on checkbox checked state */
  nav:has(.hamburger-icon input[type="checkbox"]:checked) .fa-bars {
    display:none;
  }

/* Showing the cross icon on checkbox checked state */
  nav:has(.hamburger-icon input[type="checkbox"]:checked) .fa-xmark {
    display:inline-block;
  }
}

.hero-body{
	padding: 2em;
}

.columns{
	display: flex;
	flex-direction: column;
}

.rows{
	display: flex;
	flex-flow: row wrap;
	flex-wrap: wrap;
	justify-content: space-evenly;
}

.sixty{
	margin-left: 2.5%;
	margin-right: 2.5%;
	flex: 1;
}

.forty{
	width: 35%;
	margin-left: 2.5%;
	margin-right: 2.5%;
	min-width: 215px;
	flex: 1;
}

.fa-stack{
	font-size: 1.6em;
}

.grid-2{
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
}

.grid-3{
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	width: 100%;
	justify-content: center;
}

.card{
	margin: 20px 2%;
	background-color: rgb(204, 204, 214);
	color: black;
	padding-bottom: 1em;
	border-top-left-radius: 1.5em;
	border-top-right-radius: 1.5em;
	border-bottom-left-radius: 1em;
	border-bottom-right-radius: 1em;
	flex: 100%;
}

.card-50{
	margin: 20px 2%;
	background-color: rgb(204, 204, 214);
	color: black;
	padding-bottom: 1em;
	border-top-left-radius: 1.5em;
	border-top-right-radius: 1.5em;
	border-bottom-left-radius: 1em;
	border-bottom-right-radius: 1em;
	width: 390px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

@media only screen and (max-width: 600px) {	
	.card{
		flex: 100%;
	}
	.card-4{
		flex: 100%;
	}
}

.card-header{
	background-color: #333333;
	border-top-left-radius: 1em;
	border-top-right-radius: 1em;
	padding: 1em;
	color: white;
}

.card-content{
	padding-left: 1em;
	padding-right: 1em;
	padding: 1em;
}

.card-footer{
	padding-left: 1em;
	padding-right: 1em;
}

.tags {
	display: flex;
	flex-flow: row wrap;
	flex-wrap: wrap;
}

.tag {
	margin: 0px 5px 0px 0px;
}

pre[class*="language-"]{
	border-radius: 1em;
}

.has-shadow{
	box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.5);
}

.pfp{
	border-radius: 50%;
	max-width: 250px;
	max-height: 250px;
	float: right;
}

.mastodon{
	color: #6364FF;
}

.itch-io{
	color: #fa5c5c;
}

.twitter-bg{
	color: #878787;
	cursor: not-allowed;
}

.twitter{
	color: #1DA1F2;
	cursor: not-allowed;
}

.bluesky{
	color: rgb(0, 133, 255);
}

.bluesky-bg{
	color: white;
}

.github{
	color: black;
}

.email{
	color: #49d907;
}

.rss{
	color: #ee802f;
}

.pad-right{
	margin-right: 10px;
}
/* ===============
	MUSIC CARDS
   ===============
*/

.music-card{
	margin: 20px 2%;
	background-color: rgb(204, 204, 214);
	border-radius: 1em;
	width: 250px;
	background-size: cover;
	background-position: center;
}

.music-card .music-card-content{
	padding: 1em;
	display: flex;
	flex-direction: column;
	height: 100%;
	justify-content: space-between;
}

.music-card-full-width{
	margin: 10px 2%;
	background-color: rgb(204, 204, 214);
	border-radius: 1em;
	width: 100%;
	background-size: cover;
	background-position: center;
}

.music-card-full-width .blur .content{
	padding: 1em;
	align-self: center;
}

.music-card-full-width .blur .artwork{
	width: 170px;
	height: 170px;
	background-size: contain;
	box-shadow: 0 10px 30px rgb(0 0 0 / 50%);
	border-radius: 7px;
}

.blur{
	width: inherit;
	height: 100%;
	display: flex;
	align-items: center;
	flex-direction: column;
	justify-content: flex-start;
	backdrop-filter: contrast(200%) brightness(60%) blur(50px);
	-webkit-backdrop-filter: contrast(200%) brightness(60%) blur(50px);
	border-radius: inherit;
}

.dashed-border-top{
	border-top: 5px dotted white;
	margin: 1em -1em 1em -1em;
}

.music-card-full-width .blur{
	display: flex;
	flex-direction: row;
	justify-content: left;
	flex-wrap: wrap;
}

.music-card-content .content{
	display: flex;
	flex-direction: column;
}

.music-card-content .review{
	align-self: flex-end;
	width: 100%;
}

.music-card-content .artwork{
	width: 215px;
	height: 215px;
	background-size: contain;
	box-shadow: 0 10px 30px rgb(0 0 0 / 50%);
	border-radius: 7px;
}

.video-game-card-content{
	padding: 1em;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.video-game-card-content .content{
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.video-game-card-content .artwork {
	width: 215px;
	height: 286px;
	background-size: contain;
	box-shadow: 0 10px 30px rgb(0 0 0 / 50%);
	border-radius: 7px;
}

.video-game-card-content .review{
	align-self: flex-end;
	width: 100%;
}

.space-between{
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
}

.heart{
	color:#ff5050;
}

/*
Color schemes for games
*/

.boshi{
	background: #ffbed6;
}

.thunder-math .card-header {
	background: royalblue;
}

.thunder-math {
	background: rgb(231, 236, 251);
}

.wwp-playdate{
	background: #9f9d96;
}

.wwp-playdate .card-header{
	background: rgb(255, 183, 56);
}

.famicoin{
	background: #696969;
}

.swimming{
	color: white !important;
	background: black;
}

.swimming .card-header{
	background-image: linear-gradient(180deg, #0d1a2d, black);
}

.swimming img {
	margin-top: 0;
	margin-bottom: 0;
	display: block !important;
}

.lava-friends {
	background: white;
}

.lava-friends .card-header{
	background: rgb(203, 0, 0);
}

.meditations{
	background: rgb(0, 127, 6);
}

.cube-road{
	background: rgb(255, 100, 0);
}

.bloom{
	background: rgb(209, 127, 119);
}

.bloom .card-header{
	background: #3b1f1e;
}

.chroma-maze-deluxe{
	background: #36769c;
	color: white;
}

.qaint {
	background-image: url(https://img.itch.zone/aW1hZ2UvMTc3NDkxLzgzNDU0MC5wbmc=/original/pNUpjT.png);
	background-repeat: repeat;
	background-position: 15% 0;
}

.qaint .card-header{
	background: #e2dcd0;
}

.lickin-larry{
	background: #fff2ff;
}

.hotl{
	background: black;
	color: white;
}

.lorez {
	background: #686868;
}

.wani-wani-picnic .card-header{
	background: #0078f8;
}

.wani-wani-picnic {
	background: rgba(60, 188, 252, 1);
}

.chroma-maze{
	background: #00a388;
}

.gana .card-header{
	background: linear-gradient(navy, blue);
}

.gana {
	background: blue;
	color: white;
}

/*
	Blog styles
*/

.content img{
	width: 50%;
	height: auto;
	border-radius: 1.5em;
	box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.5);
	margin: 2em auto;
	display: block;
}

.red {
	background-image: linear-gradient(40deg, darkred, red);
}
.blue {
	background-image: linear-gradient(40deg, darkblue, blue);
}
.green{
	background-image: linear-gradient(40deg, green, rgb(0, 163, 0));
}
.purple{
	background-image: linear-gradient(40deg, rgb(57, 7, 121), rgb(84, 0, 194));
}