@font-face {
  font-family: "Ark Pixel";
  src: url("../fonts/ark-pixel.ttf") format("truetype");
}
@font-face {
  font-family: "MS PGothic";
  src: url("../fonts/ms-pgothic.ttf") format("truetype");
}

body::selection {
  background: rgb(0, 0, 0);
}

.header::selection {
  background: rgb(255, 255, 255);
}
.footer::selection {
  background: rgb(255, 255, 255);
}

html {
  /* background: url("../images/4squares-bright.png");
  background-size: 1rem; */
  font-family: "MS PGothic";
  display: block;
  overflow: hidden;
}

body {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: row;
  padding: 40.84px 0%;
  letter-spacing: 1px;
}

.column {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-right: 10px;
}

#grid {
  display: grid;
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  grid-gap: 0;
}

.tile {
  width: 10px;
  height: 10px;
  background-image: url('https://www.flobbuss.de/images/tile.png');
  background-size: cover;
  will-change: background-image;
  cursor: none;
}

.tile:hover {
  background-image: url('https://www.flobbuss.de/images/flag.png');
}

.one  { width: 23%; }
.two  { width: 29%; }
.three  { width: 17%; }
.four { width: 17%; }

.box {
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border: 4px solid black;
  gap: 5px;
  border-radius: 5px;
  padding: 10px;
  overflow: hidden;
  filter: grayscale(100%);
}

.box:hover {
  filter: grayscale(0%);
}

.minesweeper {
  width: 50%;
  padding-right: 5%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.moresites {
  width: 30%;
  aspect-ratio: 1 / 1;
}

.moresites img {
  max-width: 100%;
  height: 100%;
  object-fit: contain; /* scales image without cropping */
}

.row {
  display: flex;
  flex-direction: row;
  gap: 5px;
  align-content: center;
  justify-content: center;
}

.img {
  width: 100%;
  height: 100%;
  display: block;
}

.nopadding {
  padding: 0;
}

.abme {
  align-items: flex-start;
  align-content: flex-start;
  padding-bottom: 5px;
}

.abme p {
  transform-origin: left;
  align-self: left;
  padding-bottom: 10px;
}

.disclaimer {
  font-size: 10px;
  font-style: italic;
  padding-bottom: 0px !important;
  align-self: center;
  transform-origin: center !important;
}

.header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  background-color: black;
  color: white;
  padding: 10px;
  justify-content: center;
  align-items: center;
  text-align: center;
  z-index: 99;
}

.footer {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  background-color: black;
  color: white;
  padding: 10px;
  justify-content: center;
  align-items: center;
  text-align: center;
  z-index: 99;
  text-transform: lowercase;
}

.guestframe {
  width: 100%;
  height: 615px;
}

.calendar {
  padding: 0px;
  padding-top: 10px;
  display: flex;
  align-items: center;
  filter: grayscale(100%);
  background-color: #ffd4d4;
}

.calendarframe {
  height: 500px;
}

#age .decimals {
  font-size: 7.5px;
}

h1 {
  font-size: 24px;
  margin: 0;
  font-family: "Ark Pixel";
  font-synthesis: weight;
  transform: scaleX(1.226);
  text-align: center;
  align-self: center;
  padding-bottom: 10px;
}

p {
  font-size: 15px;
  margin: 2px;
  transform: scaleX(1.226);
}

#s-m-t-tooltip {
  /* basic */
  max-width: 220px;
  z-index: 777;
  margin: 24px 14px 7px 12px;
  /* style and design */
  padding: 6px;
  border: 3px solid black;
  border-radius: 4px;
  background-color: white;
  color: black;
  transform: scaleX(1.226);
}