body {
  margin: 0;
  padding: 0;
  z-index: 1;
  background: url(./momir.webp) no-repeat;
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
  min-height: -webkit-fill-available;
}

.box {
  min-width: 50%;
  min-height: 50%;
  background: rgba(0, 0, 0, 0.1);
  padding: 0px;
  text-align: center;
  position: absolute;
  margin: auto;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  max-width: 100%;
  max-height: 100%;
  overflow: auto;
  color: white;
  font-family: 'Century Gothic', sans-serif;
  line-height: 1.5;
}

.box-img {
  margin-top: 10px;
  border-radius: 50%;
  width: 200px;
  height: 200px;
}

.box h1 {
  font-size: 40px;
  letter-spacing: 1px;
  font-weight: 100;
}

.box h5 {
  font-size: 20px;
  font-weight: 100;
}

.box p {
  text-align: justify;
}

ul {
  margin: 0;
  padding: 0;
}

.box li {
  display: inline-block;
  margin: 8px;
  list-style: none;
}

.box li a {
  color: white;
  text-decoration: none;
  font-size: 40px;
  transition: all ease-in-out 250ms;
}

.box li a:hover {
  color: #b9b9b9;
}

.button-fmt {
  appearance: none;
  background-color: #000000;
  border: 2px solid #1A1A1A;
  border-radius: 15px;
  box-sizing: border-box;
  color: #FFFFFF;
  cursor: pointer;
  display: inline-block;
  font-family: Roobert, -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  font-size: 32px;
  font-weight: 600;
  line-height: normal;
  margin: 0;
  min-height: 60px;
  min-width: 0;
  max-width: 48%;
  outline: none;
  padding: 16px 24px;
  text-align: center;
  text-decoration: none;
  transition: all 300ms cubic-bezier(.23, 1, 0.32, 1);
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  width: 100%;
  will-change: transform;
}

.button-fmt:disabled {
  pointer-events: none;
}

.button-fmt:hover {
  box-shadow: rgba(0, 0, 0, 0.25) 0 8px 15px;
  transform: translateY(-2px);
}

.button-fmt:active {
  box-shadow: none;
  transform: translateY(0);
}

.slidecontainer {
  padding: 5%;
  width: 100%;
  /* Width of the outside container */
}

/* The slider itself */
.slider {
  -webkit-appearance: none;
  /* Override default CSS styles */
  appearance: none;
  width: 90%;
  /* Full-width */
  height: 25px;
  /* Specified height */
  background: #d3d3d3;
  /* Grey background */
  outline: none;
  /* Remove outline */
  opacity: 0.7;
  /* Set transparency (for mouse-over effects on hover) */
  -webkit-transition: .2s;
  /* 0.2 seconds transition on hover */
  transition: opacity .2s;
}

/* Mouse-over effects */
.slider:hover {
  opacity: 1;
  /* Fully shown on mouse-over */
}

/* The slider handle (use -webkit- (Chrome, Opera, Safari, Edge) and -moz- (Firefox) to override default look) */
.slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  /* Override default look */
  appearance: none;
  width: 50px;
  /* Set a specific slider handle width */
  height: 50px;
  /* Slider handle height */
  background: #540360;
  /* Purple background */
  cursor: pointer;
  /* Cursor on hover */
}

.slider::-moz-range-thumb {
  width: 50px;
  /* Set a specific slider handle width */
  height: 50px;
  /* Slider handle height */
  background: #6d057a;
  /* Purple background */
  cursor: pointer;
  /* Cursor on hover */
}


.card {
  display: inline-block;
  font-family: sans-serif;
  font-size: 4mm;
  margin: 0;
  padding: 1.5mm;
  page-break-inside: avoid;
  position: relative;
  vertical-align: top;

  box-sizing: border-box;
  width: 100%;
  height: 140vw;
  border: 3mm double black;
}

.card_inner {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.card_proxy {
  cursor: pointer;
}

.card_no_print {
  opacity: 0.25;
}

.card_cost {
  font-size: 4mm;
  text-align: right;
}

.card_name {
  font-size: 1.75em;
  margin-bottom: 2mm;
}

.card_type {
  margin-top: 1mm;
  margin-bottom: 1mm;
}

.card_text {
  overflow: hidden;
  flex: 1;
}

.card_bottom {
  display: flex;
  margin-top: 2mm;
  align-items: flex-end;
}

.card_pt {
  border: 1px solid #000;
  font-size: 5mm;
  padding: 1mm 2mm;
  margin-left: 2mm;
}

.card_footer {
  flex: 1;
  font-size: 3mm;
}