/*for the simple MVP loading screen*/
.loading3 {
	position: fixed;
	inset: 0;
	z-index: 999;

	font-family: monospace;
	background-color: black;
	color: white;

	display: flex;
	align-items: center;
	justify-content: center;
}

#loadingText {
	white-space: nowrap;
	transform: translateX(1.5ch);
}

#loadingDots {
	display: inline-block;
	width: 3ch;
	text-align: left;
}

.noScroll {
	overflow: hidden;
}
/*for the placeholder text*/

.placeholder {
	position: fixed;
	right: 0;
	bottom: 0;
	margin: 4px;
}
/*this is a stylesheet for the main page*/

body {
	background-color: black;
	color: white;
	font-family: monospace;
	margin: 0;
}

.productImage {
	display: block; /*for testing only*/
	margin: 10px;
}

#MVPHomePageTitle {
	background-color: rgb(37, 37, 37);
	margin: 0;
	padding: 10px;
}

#MVPHomePageTitleAlt {
	border: 3px, solid, white;
	background-color: black;
	color: white;
	padding: 10px;
	margin: 5px;
	text-align: center;
}

.thumb {
	width: 150px;
	height: 150px;
	object-fit: cover;
	flex-shrink: 0;
}

.card {
	padding: 5px;
	display: flex;
	gap: 16px;
	align-items: flex-start;

	padding-right: 1rem;
}

.cardTitle {
	margin: 0;
}

.cardInfo {
	height: 150px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	width: 100%;
}
/*
.cardMiddle {
	flex-grow: 1;
	display: flex;
	align-items:  center;
}
*/
.cardBottom {
	display: flex;
	gap: 1rem;
	align-items: center;
	flex-direction: row;
	margin: 0;
}

p {
	margin: 0;
}

hr {
	width: 98%;
}

.price {
	font-weight: bold;
}

/*contact page*/

#contactEmail {
	font-family: monospace;
	background-color: black;
	color: white;

	display: flex;
	align-items: center;
	justify-content: center;

	height: 100vh;
}

/*for the purchase button*/

a.btn{
  display: inline-block;
  border: 2.5px solid currentColor;
  font: bold 11px monospace;
  padding: 6px 10px;
  text-decoration: none;
  background-color: black;
  color: white;

  margin-left: auto;
}

a.btn:hover {
	color: rgb(255,19,240);
}

a.btn .btnText{
  display: inline-block;
  transition: transform 0.15s ease;
  transform-origin: center;
}

a.btn:hover .btnText{
  transform: scale(1.15);
}


