@import url('variables.css');

*{
	margin: 0;
	padding: 0;
}

html, main{
  background-color: var(--color-primario);
}

html, body{
  height: unset !important;
}

main{
  width: 100%; 
  height: 100%;
}

form .mensaje{
    color: darkred;
}

textarea {
    height: 30px;
    resize: none;
    overflow: hidden;
    min-height: 50px;
    max-height: 180px;
}

.radio-correcta{
  background-color: lightgreen;
}

.radio-incorrecta{
  background-color: lightcoral;
}

.mensaje.correcta{
  color: green;
  bottom: -35px;
}
.mensaje.incorrecta{
  color: indianred;
  bottom: -35px;
}