

html {
  overscroll-behavior: none;
}

body { 
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-align: center;
  overscroll-behavior: none;
}



.element {
  background-color: white;
}

.element:fullscreen {
  background-color: white;
}

input[type="radio"]:checked {
  box-shadow: 0 0 0 3px orange;
}
input[type="checkbox"]:checked {
  box-shadow: 0 0 0 3px hotpink;
}
option:checked {
  box-shadow: 0 0 0 3px lime;
  color: red;
}

.holder {
  background: khaki;
  background-size: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  gap: 0.666rem;
  border-radius: 0.5rem;
  box-shadow: 0 0 0 0.125rem silver inset;
  min-width:360px;
}

.tile {
  width: 2.2rem;
  aspect-ratio: 1/1 auto;
  border-radius: 0.20rem;
  background-color: rgb(235, 222, 166);
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2), 0 3px 10px 0 rgba(0, 0, 0, 0.19);
  user-select: none;
  cursor: pointer;
  transition: all 0.125s ease;
  position: relative;
}

.tile .letter {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  font-size: 1.1rem;
  color:#0d6efd;
  font-weight:700;
  text-align: center;
  position: absolute;
  left: 45%;
  top: 45%;
  transform: translate(-50%, -50%);
  z-index: 4;
}

.tile .value {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  font-size: 0.55rem;
  color: #333333;
  font-weight:700;
  position: absolute;
  left: 72%;
  top: 75%;

  transform: translateY(-50%);
  z-index: 8;
}

.textecourant {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, system-ui, "Open Sans", "Helvetica Neue", sans-serif;
  font-size: 1.4rem;
  color: #000;
  font-weight:650;
  text-align: left;
  margin-left:48px;
  text-decoration:none;
  }
  
.monbouton {
	box-shadow: 0px 1px 0px 0px #fff6af;
	background:rgb(235,222,166);
	background-color:rgb(235,222,166);
	border-radius:9px;
    margin:3px;
	border:0px solid silver;
	display:inline-block;
	cursor:pointer;
	color:#333333;
	font-family:system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
	font-size:16px;
	padding:6px 12px;
	text-decoration:none;
	text-shadow:0px 1px 0px #ffee66;
}
.monbouton:hover {
	background:linear-gradient(to bottom, #ffec64 20%, #ffab23 100%);
	background-color:#ffab23;
}
.monbouton:active {
	position:relative;
	top:1px;
}



@media only screen and (max-width: 600px) {
 
 .tile {
  width: 1.6rem;
  aspect-ratio: 1/1 auto;
  border-radius: 0.12rem;
  background-color: rgb(235, 222, 166);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.2), 0 2px 6px 0 rgba(0, 0, 0, 0.19);
  user-select: none;
  cursor: pointer;
  transition: all 0.125s ease;
  position: relative;
}

.tile .letter {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  font-size: 0.7rem;
  color:#0d6efd;
  font-weight:650;
  text-align: center;
  position: absolute;
  left: 45%;
  top: 45%;
  transform: translate(-50%, -50%);
  z-index: 4;
}

.tile .value {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  font-size: 0.4rem;
  color: #333333;
  font-weight:600;
  position: absolute;
  left: 72%;
  top: 75%;

  transform: translateY(-50%);
  z-index: 8;
    }
}
