* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background: #ffffff;
  color: #000000;
}
head {
  background: #ffffff;
  color: #000000;
  padding: 20px;
  text-align: center;
  border-bottom: 2px solid #ff0000;
}
.container {
  max-width: 1200px;
  margin: 40px auto;
  padding: 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.card {
  background: #ffffff;
  border-radius: 10px;
  border: 1px solid #000000;
  overflow: hidden;
  transition: transform 0.2s;
  box-shadow: 2px 2px 6px rgba(0,0,0,0.1);
}

.card:hover {
  transform: scale(1.03);
}

.card img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.card .info {
  padding: 15px;
  text-align: center;
}

.card h2 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #000000;
}

.card p {
  font-size: 1rem;
  margin-bottom: 10px;
  color: #333;
}

.boton {
  display: inline-block;
  padding: 10px 20px;
  background: #000000;
  color: #ff0000;
  border-radius: 6px;
  font-weight: bold;
  transition: background 0.2s, box-shadow 0.2s;
}

.btn:hover {
  background: #ff0000;
  box-shadow: 0px 3px 6px rgba(0,0,0,0.2);
}

footer {
  background: #ff0000;
  color: #ffffff;
  text-align: center;
  padding: 20px;
  margin-top: 40px;
  border-top: 2px solid #000000;
}

footer p {
  margin: 5px 0;
}
.card1{
    background: #ffffff;
  border-radius: 10px;
  border: 1px solid #000000;
  overflow: hidden;
  transition: transform 0.2s;
  box-shadow: 2px 2px 6px rgba(0,0,0,0.1);
}
