/* Estilos generales */
html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  font-family: sans-serif;
}

body {
  margin: 0;
  color: #333;
  background-color: #fff;
  min-height: 100vh; /* Asegura que el body tenga al menos el 100% del alto de la ventana */
  font-family: Arial, sans-serif;
  font-size: 14px;
  line-height: 20px;
}

img {
  border: 0;
  vertical-align: middle;
  max-width: 100%;
  display: inline-block;
}

/* Evitar selección y cambiar cursor en imágenes */
.image {
  user-select: none; /* Evita que la imagen se pueda seleccionar */
  cursor: default;   /* Cambia el cursor a uno normal */
  transition: transform 0.3s ease; /* Transición suave para la propiedad transform */
}

.image:hover {
  transform: scale(1.1); /* Escala la imagen al 110% de su tamaño original */
}

/* Estilos específicos para el body */
.body {
  background-image: url("../images/dtmf-20paginas.jpg");
  background-position: center center; /* Centra la imagen horizontalmente y la alinea en la parte inferior */
  background-size: cover;             /* Cubre todo el contenedor */
  background-attachment: fixed;
  background-repeat: no-repeat;
}

/* Estilos para la imagen */
.image {
  margin-top: 31%;
  margin-left: 82%;
  padding-left: 0;
}

/* Media query para dispositivos móviles */
@media screen and (max-width: 650px) {
  .body {
    background-image: url("../images/dtmf-20paginas-20vertical.jpg");
    background-position: center; /* Centra la imagen */
    background-size: cover;      /* Cubre todo el contenedor */
    background-repeat: no-repeat;
    min-height: 100vh;           /* Asegura que el body ocupe toda la altura de la pantalla */
  }

  .image {
    width: 40%;
    max-width: 80%;
    margin-top: 0%;
    margin-left: 0%;
    position: absolute;
    top: 74%;
    left: 56%;
    transition: transform 0.3s ease;
    cursor: pointer;
  }

  .pop-effect {
    animation: pop 0.3s ease;
  }
}