@import url("https://fonts.googleapis.com/css2?family=Nanum+Gothic:wght@400;700;800&display=swap");

* {
  font-family: "Nanum Gothic", sans-serif;
}

body {
  background-color: #131516;
}

.container {
  display: flex;
  flex-direction: row;
  text-align: center;
  justify-content: center;
}

.note {
  background-color: #af1f1f8e;
  color: #fff;
  padding: 20px 40px;
  margin: 20px 450px 5px 450px;
  font-size: 16px;
  text-align: center;
  border-radius: 10px;
}

#bold {
  text-transform: uppercase;
}

/* ---------- Tabla buscaminas ---------- */

/* COMPONENTE TABLERO */
.main {
  display: grid;
  justify-content: center;
  background-color: rgba(57, 60, 61, 0.356);
  padding: 30px 0;
  margin: 30px 400px;
  user-select: none;
}

.panel {
  display: grid;
  grid-auto-flow: column;
  font-size: 25px;
  justify-content: center;
  color: #fff;
}

.btn {
  -webkit-transition: box-shadow 300ms ease-in-out, color 300ms ease-in-out;
  transition: box-shadow 300ms ease-in-out, color 300ms ease-in-out;
  padding: 12px 50px;
  border-radius: 10px;
  border-style: none;
  outline: 0;
}

.btn:hover {
  box-shadow: 0 0 40px 40px #a4db30 inset;
  border-style: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-weight: 800;
  color: #475e16;
}

.icons {
  width: 30px;
  margin-bottom: -5px;
  margin-right: 5px;
  margin-left: 15px;
}

.time {
  font-weight: 800;
}

.matrix {
  display: grid;
  background-color: rgba(128, 128, 128, 0.3);
  padding: 10px;
  border: 1px solid#A4DB30;
  margin-top: 20px;
}

/* COMPONENTE CASILLA */
.box {
  display: flex;
  justify-items: center; /* De manera horizontal */
  align-items: center; /* De manera vertical */
  z-index: 10;
}

.mines {
  font-size: 18px;
  border: 5px solid yellow;
  padding: 2px;
  padding-top: 3px;
}

.minesRemaining {
  color: #fff;
}

.box-initial {
  width: 32px;
  height: 32px;
  background-color: #aad751;
  border: 3px solid #a2d149;
  justify-content: center;
  cursor: pointer;
}

.box-select {
  width: 36px;
  height: 36px;
  justify-content: center;
  border: 1px solid #bdbab9;
  cursor: default;
}

.one {
  color: #6195a7;
  font-weight: 800;
}
.two {
  color: #32b134;
  font-weight: 800;
}
.three {
  color: #a4db30;
  font-weight: 800;
}
.four {
  color: #9d5ae9;
  font-weight: 800;
}
.five {
  color: #3214a8;
  font-weight: 800;
}
.six {
  color: #435744;
  font-weight: 800;
}
.seven {
  color: #394939;
  font-weight: 800;
}
.eight {
  color: #232e23;
  font-weight: 800;
}

.flag {
  font-size: 20px;
}

.flag-false {
  font-size: 18px;
}

.background_one {
  background-color: #d8db30;
}

.modelLost {
  color: #fff;
  padding: 10px 60px;
  text-align: center;
}

.title-lost {
  font-size: 20px;
  margin-bottom: 10px;
}

#boxremaining{
  color: rgba(57, 60, 61, 0.356);
  font-size: 3px;
}