:root {
	--logo-steam: url('/img/logo_steam_w.png');
	--logo-epicstore: url('/img/logo_epicstore_w.png');
}
[data-theme="light"] {
	--logo-steam: url('/img/logo_steam_b.png');
	--logo-epicstore: url('/img/logo_epicstore_b.png');
}

.logo_steam {
	background-image: var(--logo-steam);
	width: 10em;
	height: 100px;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}

.logo_epicstore {
	background-image: var(--logo-epicstore);
	width: 9em;
	height: 100px;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}

@media screen and (max-width: 700px) {
	.logo_steam {
		width: 6em;
		height: 80px;
	}
	.logo_epicstore {
		width: 5em;
		height: 80px;
	}
}
