@charset "UTF-8";
/* CSS Document */
/* Fondo general para móviles */

body {
  margin: 0;
  font-family: 'Jost', sans-serif;
  background-image: url('catsFondoCel.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
/* Estilo general para todos los enlaces */
a,
a:visited,
a:hover,
a:active {
  color: #ff4500;
  text-decoration: none;
}
/* Contenedor principal */
.gatodiv {
  margin-top: 5px;
  width: 80%;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.imagen {
  width: 80%;
  height: auto;
  border-radius: 10px;
}

.texto {
  color: black;
  font-size: 25px;
 font-family: 'Jost', sans-serif;
}

.boton {
  background-color: #fff;
  color: #000;
	width: 100px;
  padding: 10px 20px;
  border: 3px solid #ff4500; /* Línea naranja casi roja */
  border-radius: 45px;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.3s;
}

.boton:hover {
  background-color: #ccc;
}

/* Estilo para pantallas más grandes */
@media screen and (min-width: 768px) {
  body {
    background-image: url('catsFondo.jpg');
  }

  .gatodiv {
    width: 33%;
    max-width: 400px;
  }
}

