h1 {
    text-align: center;
    color: gold;
}

h2 {
    text-align: center;
}

p {
    text-align: center;
    color: darkgray;
    font-weight: bold
}

#personajes {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: auto;
    width: 50%;
}

.personaje {
    display: flex;
    align-items: center;
    border: 1px solid black;
    border-radius: 10px;
    padding: 10px;
}

.personaje:hover {
    background-color: lightblue;
}

.personaje img {
    width: 120px;
    height: auto;
    border-radius: 8px;
    margin-right: 20px;
}

input {
    width: 25%;
    border: 1px solid black;
    border-radius: 10px;
    padding: 10px;
}

input:focus {
    background-color: lightyellow;
}

input[disabled] {
    opacity: 0.6;
    background-color: #eee;
    cursor: not-allowed;
}