
* {
  margin: 0;
  padding: 0;
}

body {
  background-image: url(../imagen.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
}


.tarjeta h1 {
  color: #B08A69;
  text-align: center;
  margin-bottom: 20px;
  background-color: rgba(42, 36, 32, 0.85);
  border-radius: 10px;
  border: 2px solid #A9876B;
}

.tarjeta img {
  width: 300px;
  border-radius: 8px;
  margin: 0 auto 20px; 
  display: block; 
}

.informacion {
  display: flex;
  flex-direction: column;
  align-content: center;
}

.informacion p {
  color: #f5f3ed;
  background-color: rgba(42, 36, 32, 0.85);
  padding: 12px 20px;
  border: 2px solid #A9876B;
  border-radius: 10px;
  text-align: center;
  min-width: 280px;
  margin-bottom: 10px;
}

.informacion p:hover {
  background-color: #A9876B;
  color: white;
  transform: scale(1.02);
  cursor: default;
}
