body {
  margin: 0;
  border: 0;
}
.content {
  background: #F5F6FA;
}
#texto {
  width: 100%;
  padding: 1rem;
  height: 150px;

  border: none;
  box-sizing: border-box;
  font-family: Lato, Arial, Times, "Times New Roman", sans-serif;
  font-weight: normal;
  font-size: 1rem;
}

#image-options {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 10px
}


@media screen and (max-device-width: 1100px) {
  #image-options {
    grid-template-columns: repeat(2,1fr);
  }
}




.opcion-imagen {
  text-align: center;
  position: relative;
}
.opcion-imagen img {
  width: calc(100% - 4px);
  height: auto;
  border: 2px solid #ccc;
  border-radius: 5px;
  cursor: pointer;
  transition: transform 0.2s, border-color 0.2s;
}
.opcion-imagen img:hover {
  border-color: #000;
}
.opcion-imagen input[type="radio"] {
  display: none;
}
.opcion-imagen input[type="radio"]:checked + img {
  border-color: #dc006c;
}
button {
  margin-top: 20px;
  font-size: 14px;
  cursor: pointer;
  color: #fff;
  background: #dc006c;
  padding: 12px 20px;
  display: inline-block;
  text-transform: uppercase;
  border: none;
  width: 100%;
}
#result .message {
  text-align: center;
  text-align: center;
  color: #a94442;
  background-color: #f2dede;
  padding: 15px;
  margin-bottom: 20px;
  border: 1px solid #ebccd1;
  border-radius: 4px;
  font-family: Lato, Arial, Times, "Times New Roman", sans-serif;
  font-weight: bold; 

}
.texto-resultado {
  text-align: center;
  text-align: center;
  color: #3c763d;
  background-color: #dff0d8;
  padding: 15px;
  margin-bottom: 20px;
  border: 1px solid #d6e9c6;
  border-radius: 4px;
  font-family: Lato, Arial, Times, "Times New Roman", sans-serif;
}
.texto-resultado a {
  font-weight: bold;
  color: #3c763d;

}

form h3 { font-size: 2.3125em; }