/* Fondo de Imagen y Degradado ESCRITORIO */
body {

  min-height: 100vh;
    
  background-image: url("https://f2.toyhou.se/file/f2-toyhou-se/images/81338412_ha674I2GlVb7jb9.jpg"),linear-gradient(#ffd700, #ffb300);
  background-color: #ffd700;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;


/* */
  color: black;
  font-family: Verdana;
}

/* Fondo de Imagen y Degradado MOVIL */
@media (max-width: 768px) {
    
body {

  background-image: url(""),linear-gradient(#ffd700, #ffb300);
  background-color: #ffd700;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
 }
}

/* Quitar subrayado de todos los enlaces */
a,
a:hover,
a:focus,
a:active {
  text-decoration: none !important;
}