@charset "utf-8";
/* CSS Document */

.container {
	display: flex;
/*	height: 100vh;*/
	background-color: rebeccapurple;
/*	overflow: hidden;*/
}

.menu {
	flex: 1 1 20%;
	width: calc(20% - 200px);
	min-width: 200px;
	max-width: 600px;
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
	background-color: rebeccapurple;
	height: 100vh;
	flex-wrap: wrap;
	overflow-y: auto; /* Enable vertical scrolling */
}

.menu img {
	width: auto;
	height: auto;
	max-width: 100%;
	max-height: 100%;
	margin-bottom: 2%;
}


.content {
  flex: 1 1 63%;
  width: calc(63% - 800px);
  min-width: 800px;
  position: relative;
  background-color: black;
/*  background-color: darkslateblue;*/
  color: white;
  padding: 10px;
  overflow-y: auto; /* Enable vertical scrolling */
}


.divider {
  width: 800px;
  height: 1%;
  max-width: 100%;
  background-color: mediumpurple;
  margin-top: 0%; /* Adjust the margin as needed */
  margin-bottom: 2%; /* Adjust the margin as needed */
}

.image-container {
  display: flex; /* Use flexbox for the image container */
  flex-wrap: nowrap; /* Enable wrapping of images within the container */
	width: calc(100% - 200px);
	min-width: 200px;
	max-width: 600px;
	height: calc(150 * calc())
}

.image-container img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: scale-down;
  object-position: top left;
  flex-basis: 50%; /* Each image takes 50% of the container width */
}


.DenkiPage {
	height: 100vh;
  background-color: black;
  color: white;
}

.deck-image-container {
  display: flex;
  flex-wrap: wrap;
}

.deck-image-wrapper {
  width: 256px;
  height: auto;
  margin-right: 10px;
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
}

/*.deck-image-wrapper img {
  width: 100%;
  height: auto;
}*/


.deck-caption {
  width: 100%;
  background-color: black;
  color: white;
  padding: 10px;
  text-align: center;
  font-size: 14px;
  box-sizing: border-box;
}

.button-style {
  display: inline-block;
  padding: 10px 20px;
  background-color: rebeccapurple;
  color: white;
  border-radius: 5px;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
}

.button-style:hover {
  background-color: purple;
}

.button-style:active {
  background-color: darkviolet;
}

.icon {
  position: absolute;
  width: 50px;
  height: 50px;
}

.patreon {
  left: 0;
  top: 206px;
}

.deviantart {
  right: 0;
  top: 2066px;
}

.itch {
  left: 0;
  top: 156px;
}

.steam {
  right: 0;
  top: 156px;
}

.left-icon {
  float: left;
  margin-right: 10px; /* Adjust the value as per your preference */
}

.store-option {
  overflow: auto;
}

.deck-button-container {
	display: flex;
	align-items: center;
	overflow: auto;
}

.deck-button-container p{
	width: calc(100% - 220px);
}
.deck-button {
	display: inline-block;
	width: 220px;
  margin-right: 10px; /* Adjust the value as per your preference */
}


