body {
	font-family: 'Assistant', sans-serif;

	background-color: #000;
	color: #000;

	width: 100vw;
	height: 100%;
	padding: 0;
	margin: 0;

	font-size: 1.5em;

	overflow-x: hidden;
	overflow-y: auto;

	display: flex;
	align-items: center;

	background-position: top center;
	background-size: cover;
	background-repeat: no-repeat;

	box-sizing: border-box;
}

.background {
	width: 100%;
	height: 100vh;
	display: grid;
	grid-template-columns: 0fr 100% 0fr;
	grid-template-rows: 315px max-content min-content;
}

.bg-n1, .bg-n4, .bg-n7,
.bg-n3, .bg-n6, .bg-n9 {
	position: relative;
	pointer-events: none;
}

.bg-n1, .bg-n4, .bg-n7 {
	z-index: -1;
}

.bg-n3, .bg-n6, .bg-n9 {
	z-index: -2;
}

.bg-n1, .bg-n3 {
	filter: opacity(15%);
	box-shadow: inset 0 -150px 120px 75px black;
	transform: scaleX(2);
}

.bg-n4, .bg-n6 {
	filter: opacity(13%);
	box-shadow: inset 0 0 150px 150px black;
	transform: scaleX(10);
}

.bg-n7, .bg-n9 {
	filter: opacity(15%);
	box-shadow: inset 0 150px 120px 75px black;
	transform: scaleX(2);
}

div.bg-n1 {
	background-color: #f07;
	width: 75%;
}

div.bg-n2 {
	background-color: transparent;
}

div.bg-n3 {
	background-color: #00ffb4;
}

div.bg-n4 {
	background-color: #ffa900;
}

div.bg-n5 {
	background-color: transparent;
}

div.bg-n6 {
	background-color: #fff000;
}

div.bg-n7 {
	background-color: #09f;
}

div.bg-n8 {
	background-color: transparent;
}

div.bg-n9 {
	background-color: #55e0f2;
}

header {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 45px;
	width: 100%;
}

#raviolstation-logo {
	width: 80%;
	display: flex;
	flex-direction: row;
	justify-content: center;
	padding: 75px 0 0 0;
	color: white !important;
}

#raviolstation-logo svg {
	height: 90px;
	transition: all 0.2s ease-in-out;
}

#raviolstation-logo path {
	fill: white;
}

@media (min-width: 1080px) {
	#raviolstation-logo {
		width: 100%;
		padding: 75px 0 0 0;
	}

	#raviolstation-logo svg {
		height: 90px;
	}
}

/* games section */

main {
	width: 100%;

	display: flex;
	flex-direction: row;
	justify-content: center;
}

#games {
	position: relative;
	width: 100%;
	padding: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	background: black;
	color: #ccc;
	gap: 30px;
}

.game {
	width: 90%;
	position: relative;
	margin: 0;
	padding: 0;

	display: flex;

	flex-direction: column;
	align-items: center;
	gap: 30px;
}

.game-platforms {
	height: 4em;
}

.game-platforms ul {
	list-style-type: none;
	display: flex;
	flex-direction: row;
	align-items: center;
	margin: 0;
	padding: 0;
	height: 4em;
	gap: 15px;
}

.platform-icon {
	width: 48px;
	height: 48px;
	background-size: 48px 48px;
	background-repeat: no-repeat;
	background-position: center;
}

.android-icon {
	background-image: url("./images/Android.svg");
	background-size: contain;
}

.firefox-icon {
	background-image: url("./images/Firefox.svg");
	background-size: contain;
}

.safari-icon {
	background-image: url("./images/Safari.svg");
	background-size: contain;
}

.edge-icon {
	background-image: url("./images/Edge.svg");
	background-size: contain;
}

.windows-icon {
	background-image: url("./images/Windows.svg");
	background-size: 33px 33px;
}

.game-image {
	width: 100%;
	height: 100%;

	display: flex;
	align-items: center;
}

.game-image img {
	width: 100%;
	border-radius: 5px;
	filter: brightness(100%) saturate(110%);
}

img.pixelated {
	image-rendering: pixelated;
	image-rendering: -moz-crisp-edges;
	image-rendering: crisp-edges;
}

.game-info {
	width: 100%;
	min-height: auto;
	padding: 0;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.game-desc h2 {
	font-size: 1.3em;
}

.game-desc h2 sup {
	font-size: 0.7em;
	border: 1px solid #aaa;
	border-radius: 4px;
	line-height: 0.5em;
	height: 15px;
	padding-top: 5px;
	display: inline-block;
	margin-left: 8px;
	color: #aaa;
}

.game-desc ul {
	padding: 0;
	list-style: none;
}

.game-cta {
	display: flex;
	flex-direction: column;
}

.play-button {
	margin-left: -16.5px;
}

@media screen and (min-width: 1200px) {
	.background {
		grid-template-columns: 1fr max-content 1fr;
		grid-template-rows: 315px min-content 1fr;
	}

	#games {
		max-width: 1200px;
		border-radius: 12px;
		background: black;
		padding-bottom: 30px;
		padding-top: 11px;
		box-shadow: 0 0 200px 5px rgba(255, 143, 0, 0.21), 0 0 0 1px rgba(255 255 255 / 5%);
	}

	.game {
		min-width: 1020px;
		max-width: 1080px;
		flex-direction: row;
		flex-wrap: nowrap;
		justify-content: space-evenly;
	}

	.game-image {
		width: 600px;
	}

	.game-info {
		width: 600px;
		height: 100%;

		min-height: auto;
	}

	.game-cta {
		flex-direction: row;
		justify-content: space-between;
	}

	.play-button {
		margin-right: -16.5px;
	}
}

/* social links section */

#social-links {
	position: relative;

	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;

	width: 100%;
	margin: 0;
}

#social-links ul {
	margin: 0;
	padding: 0;

	width: 100%;

	list-style: none;

	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 50px;
}

#social-links li {
	fill: rgb(255, 255, 255);

	transition: ease-in-out 0.1s;

	display: flex;
	justify-content: center;
	align-items: center;
}

#social-links li a {
	display: flex;
	flex-direction: row;
	height: 45px;
	align-items: center;
}

#social-links li.icon-social-instagram:hover {
	fill: rgb(205, 72, 107);
	filter: drop-shadow(0 0 10px rgb(205, 72, 107));
}

#social-links li.icon-social-twitter:hover {
	fill: rgb(180, 180, 180);
	filter: drop-shadow(0 0 10px rgb(255, 255, 255));
}

#social-links li.icon-social-youtube:hover {
	fill: rgb(255, 0, 0);
	filter: drop-shadow(0 0 10px rgb(255, 0, 0));
}

#social-links li.icon-social-linkedin:hover {
	fill: rgb(0, 119, 181);
	filter: drop-shadow(0 0 10px rgb(91, 199, 255));
}

@media (min-width: 520px) {
	#social-links ul {
		gap: 75px;
	}
}

footer {
	width: 100%;
	color: white;
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-top: 45px;
	padding: 0 0 30px;
	font-weight: bold;

}

footer ul {
	list-style: none;
	flex-direction: column;
	gap: 45px;
	align-items: center;
}

footer span {
	display: flex;
	margin: 15px;
}

footer img {
	filter: drop-shadow(0 0 50px rgb(255, 179, 0));
	margin-bottom: 10px;
}

@media (min-width: 720px) {
	footer ul {
		flex-direction: row;
		gap: 80px;
	}

	footer span {
		margin: 30px;
	}
}

/* anchor link style */

a:link {
	text-decoration: inherit;
	color: #c4c4c4;
}

a:visited {
	text-decoration: inherit;
	color: inherit;
}

a:hover {
	text-shadow: 0 0 15px #ffae00;
}

a:visited:hover {
	text-decoration: inherit;
	color: #ccc;
}

a.nostyle:link {
	text-decoration: inherit;
	color: inherit;
	box-shadow: inherit;
	border-radius: inherit;
	padding: inherit;
	background: inherit;
}

a.nostyle:visited, a.nostyle:visited:hover, a.nostyle:hover {
	text-decoration: none;
	color: inherit;
}

.play-button {
	height: 4em;
}

#linksabout {
	display: flex;
	padding: 15px;
}
