h1, h2 {
    color: #ffcc00;
    text-align: center;
}
body {
    background-color: #504d4d;
    color: #fff;
    font-family: Arial, sans-serif;
}
span {
    margin: 0 10px;
    padding: 5px;
    color: #ffcc00;
    font-weight: bold;
}

.character-list {
  gap: 50px;
  list-style: none;
  text-align: center;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: repeat(2, 1fr);
  margin-top: 1px;
}

.character-list li {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.character-list li span {
  margin-top: 15px; 
}


.imagen {
  width: 200px;
  height: 300px; 
  border: 5px solid #14457e;
  object-fit: contain; 
}

.imagen:hover {
  transform: scale(1.1);
  transition: transform 0.3s ease;
  border-radius: 10px;
}

footer {
    text-align: center;
    margin-top: 20px;
    color: #ffcc00;
}




.modal {
  position: fixed;
  z-index: 1000;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal-content {
  background: #222;
  color: #ffcc00;
  padding: 30px;
  border-radius: 10px;
  min-width: 300px;
  text-align: center;
}
.close {
  position: absolute;
  top: 20px; right: 30px;
  font-size: 2rem;
  cursor: pointer;
}