body {
    background-color: #c6d6d5;
    font-family: 'Segoe UI', sans-serif;
  }
  .hover-scale:hover {
    transform: scale(1.05);
    transition: transform 0.3s ease;
  }
  .hover-opacity:hover {
    opacity: 0.85;
    transition: opacity 0.3s ease;
  }
  .hover-bg:hover {
    background-color: #2d3748;
  }

  .muestra{
    display:flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .muestra img{
    width: 50vw;
  }

  /* Estilos para móviles */


@media (max-width: 768px) {
  .muestra img{
    width: 80vw;
  }
  nav{
    display:none;
  }
}