html {
	background-color: whitesmoke;
  background-image: url(images/shanebg.webp);
  background-size: 100vw 100vh;
	font-family: 'Oswald'; 
	color: black;
	overflow: hidden;
  user-select: none;
}

.title {
  font-family: 'Luckiest Guy';
	color: black;
  font-size: 5.5vh;
}

.center {
  display: flex;
  gap: 4px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.replacementBingo {
  width: 65vh;
  height: 65vh;
}

.peekEmote {
  position: absolute;
  top: 13%;
  z-index: -1;
}

#gabpeek {
  left: calc(50% - 30vh);
}

#bellspeek {
  right: calc(50% - 30vh);
}

.masterBoard {
  position: absolute;
  left: 3vw;
  background-color: black;
  display: grid;
  box-sizing: border-box;
  padding: 5px;
  gap: 5px;
  width: 128vh;
  height: 80vh;
}

.checkBar {
  position: absolute;
  background-color: whitesmoke;
  box-sizing: border-box;
  padding: 5px;
  border: 5px solid black;
}

.miniBingo {
  position: absolute;
  background-color: black;
  display: grid;
  box-sizing: border-box;
  padding: 5px;
}

.bingoCard {
  background-color: black;
  display: grid;
  visibility: hidden;
  box-sizing: border-box;
  padding: 5px;
  width: 80vh;
  height: 80vh;
}

.cell {
  position: relative;
  background-color: whitesmoke;
  width: 100%;
  height: 100%;
  aspect-ratio: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: 'Oswald';
  text-align: center;
  text-wrap: balance;
  overflow: hidden;
  text-overflow: clip;
}

h1 {
  font-weight: normal;
}

.seed {
  position: absolute;
  bottom: 2vh;
  right: 50%;
  transform: translateX(50%);
  font-family: 'Luckiest Guy';
  font-size: 3.5vh;
}

/* .rules {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 2vh;
  width: 400px;
  height: 500px;
  text-align: center;
  background-color: whitesmoke;
  padding: 10px;
  box-sizing: border-box;
} */

.button {
  background-color: whitesmoke;
  border: none;
  border-radius: 4px;
  color: #747474;
  font-weight: bold;
  padding: 4px 8px;
  text-align: center;
  font-size: 4.5vh;
  font-family: 'Luckiest Guy';
  margin: 5px 0px;
  opacity: 0.9;
  transition: 0.3s;
  display: inline-block;
  text-decoration: none;
  cursor: pointer;
}

.button:hover {
  opacity: 1   
}

.button:active {
  background-color: white;
}

.input {
  text-align: center;
  font-family: 'Oswald';
  background-color: transparent;
  font-size: 4.5vh;
  border: none;
  box-shadow: none;
  border-bottom: 5px solid black;
  width: 20vh;
}

.input:focus {
  box-shadow: none;
  outline: 0;
  border-bottom: 5px solid black;
}

.bingoText {
  max-width: 100%;
  max-height: 100%;
  z-index: 2;
}

.bellaX {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
  clip-path: polygon(20% 0%, 0% 20%, 30% 50%, 0% 80%, 20% 100%, 50% 70%, 80% 100%, 100% 80%, 70% 50%, 100% 20%, 80% 0%, 50% 30%);
}

@font-face {
  font-family: 'Luckiest Guy';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/luckiestguy/v23/_gP_1RrxsjcxVyin9l9n_j2hTd52.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Oswald';
  font-style: normal;
  font-weight: 200 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/oswald/v53/TK3iWkUHHAIjg752GT8G.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}