* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.header {
  background-color: lightgray;
  padding: 1rem;
}

.button {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-family: "Momo Trust Display", sans-serif;
  font-size: 3.5rem;
  color: white;
  position: relative;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow: hidden;
  border: none;
}

.button::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  transition: background 0.3s;
}

.button:hover {
  flex: 1.2;
  font-size: 4.5rem;
  text-shadow: 0 0 20px rgba(157, 78, 221, 0.8);
}

.button:hover::before {
  background: rgba(0, 0, 0, 0);
}

.button:first-child {
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.return {
  display: flex;
  justify-content: center;
}

.return .returnButton {
  text-decoration: none;
  text-align: center;
  font-family: "Momo Trust Display", sans-serif;
  background-color: #3c096c;
  padding: 15px 55px;
  border-radius: 25px;
  font-size: 13px;
  color: #dcd6f7;
}

.return .returnButton:hover {
  background-color: #7b2cbf;
}

.buttonStart {
  background-color: #7b2cbf;
  padding: 15px 45px;
  width: 210px;
  border: none;
  border-radius: 15px;
  text-decoration: none;
  text-align: center;
  font-family: "Momo Trust Display", sans-serif;
  font-size: 15px;
  color: #dcd6f7;
}

.buttonStart:hover {
  background-color: #3c096c;
  color: white;
  padding: 15px 45px;
  width: 210px;
  border: none;
  border-radius: 15px;
}

body {
  height: 100vh;
  width: 100vw;
  overflow: hidden;
  background-color: #1a1a2e;
  font-family: 'Inter', sans-serif;
  display: flex;
  flex-direction: column;
}

.h1Principal {
  position: relative;
  top: 5%;
  width: 100%;
  z-index: 10;
  text-align: center;
  pointer-events: none;
}

.h1Principal h1 {
  font-family: "Momo Trust Display", sans-serif;
  font-size: 2.5rem;
  padding-bottom: 25px;
  color: white;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.8);
  letter-spacing: 2px;
}

.botonesJuegos {
  display: flex;
  height: 100vh;
  width: 100vw;
  gap: 0;
}

body .return {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}

body .start {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}

body .tablero {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}

body .cell {
  width: 30px;
  height: 30px;
  border: 1px solid #999;
  background-color: #ccc;
  text-align: center;
  line-height: 30px;
  font-weight: bold;
  font-family: "Momo Trust Display", sans-serif;
  cursor: pointer;
}

body .cell.revelada {
  background-color: #eee;
}

body .cell.explosion {
  background-color: red;
  color: white;
}

body .startSudoku {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: auto;
  margin-top: 50px;
  width: 150px;
  gap: 25px;
}

body .startSudoku select {
  border: none;
  padding: 10px 20px;
  background-color: #9d4edd;
  border-radius: 15px;
  font-family: "Momo Trust Display", sans-serif;
  color: white;
}

body .startSudoku p {
  font-family: "Momo Trust Display", sans-serif;
  text-align: center;
  width: 800px;
}

body .tableroSudoku {
  margin: auto;
  margin-top: 25px;
}

body .inputSudoku {
  font-family: "Momo Trust Display", sans-serif;
  font-size: 25px;
  text-align: center;
  width: 40px;
  height: 40px;
  box-sizing: border-box;
}

/* cambio de prueba */
/*# sourceMappingURL=main.css.map */