.wrapper {
  margin: 0;
  padding: 0;
  height: 100%;
  text-align: center;
  background-color: black;
  color: white;
}


.ascii {
  font-family: monospace;
  line-height: 1;
  display: grid;
  gap: 0;
}

.char {
  display: inline-block;
}

.char input {
  display: none;
}


.char span {
  display: inline-block;
  transition: transform 0.2s ease, color 0.2s ease;
  cursor: pointer;
}


.char:hover span {
  transform: scale(3);
  font-weight: bold;
  color: red;
}

a {
  color: rgb(255, 255, 255); 
  text-decoration: none; 
    font-weight: bold;

  
}

a:hover {
  color: #6d6dc7; /* color cuando pasas el mouse */
}

.char input:checked + span {
  transform: scale(1.8);
  color: rgb(255, 0, 0);
}  

.char_explote {
  display: inline-block;
}

.char_explote input {
  display: none;
}

.char_explote span {
  display: inline-block;
  transition: transform 0.2s ease, color 0.2s ease;
  cursor: pointer;
}

.char_explote:hover span {
  transform: scale(5);
  font-weight: bold;
  color: #6d6dc7;
}

input:checked + span {
  transform: scale(1.8);
  color: #6d6dc7;
}  

.char span,
.dot {
  height: 3.2ch;
  line-height: 3.2ch;
}

.char span,
.dot {
  display: inline-block;
  width: 1.9ch;
  text-align: center;
}
