header {
  display: flex;
  border: 4px solid black;
  justify-content: space-between;
  align-items: center;
  background-color: rgb(138, 138, 138);
}

a {
  text-decoration: none;
}

body {
  background-color: rgb(138, 138, 138);
}

.menu {
  font-size: 200px;
  display: flexbox;
  gap: 100px;

}

h2 {
  font-size: 200px;
  text-align: center;
}

.catalogo {
  display: flex;
  justify-content: center;

  margin-top: auto;


}

.card {
  margin: 100px 50px;
  justify-content: center;
  border-radius: 8px;
  width: 2000px;
  display: flex;
  flex-direction: column;

}

.card img {
  width: 100%;
  height: 60%;
}

.card .content {


  height: 3000px;
  text-align: center;
  font-size: 100px;
  width: 95%;
}

button {
  font-size: 70px;
  margin-top: auto;
  /* Empuja el botón hacia abajo */
  padding: 10px 15px;
  background: #222;
  color: #fff;
  border: none;
  cursor: pointer;
  border-radius: 5px;

}

.login {
  display: flex;
  align-items: center;
  gap: 100px;
  flex-direction: column;
  font-size: 30px;

}



input[type="email"],
input[type="password"] {
  font-size: 60px;
  width: 500px;
  padding: 10px;
  flex-direction: column;

}

label {
  font-size: 100px;
  align-items: center;
}