button {
  margin-right: 20px;
}

/* Pop up styles */
.popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.popup-content {
  border: 1px solid #025bff;
  background: #050b19;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  width: 400px;
}

.popup-content h2 {
  margin-bottom: 15px;
}

.popup-content input {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.submit-button,
.close-button {
  padding: 10px 20px;
  margin: 5px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.submit-button {
  background-color: #14226c;
  color: #fff;
}

.close-button {
  background-color: #2c292a;
  color: #fff;
}

.submit-button:hover {
  background-color: #111d5a;
}

.close-button:hover {
  background-color: #201e1e;
}

.error-msg {
  display: none;
  text-align: center;
  align-items: center;
  color: red;
  font-size: 16px;
}

.buttons-div {
  margin-top: 2em;
  display: flex;
}

.image-container{
  display: flex;
  width: 100%;
  border: 1px solid #025bff;
  border-radius: 10px;
}

.imagen{
  width: 100%;
  height: 100%;
  box-shadow: 0px 2px 47px -8px rgba(2, 91, 255, 0.425);
  border-radius: 10px;
  transition: box-shadow 0.3s ease;
}

.imagen:hover {
  box-shadow: 0px 2px 47px -8px rgba(2,91,255,1);
}

