body {
    margin: 0;
}

.tela {
    background-color: #000;
    background-image: url(cypherfundo.jpg);
    background-size: cover;
    margin: 0;
    padding: 0px;
    display: flex;
    justify-content: left;
    align-items: center;
    min-height: 100vh;
    overflow: hidden;
}

.ficha-container {
    background-color: #808080;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    padding: 30px;
    text-align: center;
    margin: 20px
}

.personagem-foto {
    width: 150px;
    height: 150px;
    border-radius: 50%; 
    border: 3px solid #2CEAA3;
    object-fit: cover;
    margin-bottom: 15px;
}

.personagem-nome {
    color:#131319;
    font-size: 2.5em;
    margin: 10px 0 5px;
}

.personagem-titulo {
    color: #2a4a6e;
    font-size: 1.2em;
    margin: 0;
}

.ficha-bio p {
    text-align: justify;
    line-height: 1.6;
    color: #131319;
}

.ficha-habilidades h3 {
    margin-top: 20px;
    color: #2a4a6e;
    border-bottom: 2px solid #2CEAA3;
    padding-bottom: 5px;
}

.ficha-habilidades ul {
    list-style: none;
    padding: 0;
}

.ficha-habilidades li {
    background-color: #b9b9b9;
    border: 1px solid #2CEAA3;
    margin-bottom: 8px;
    padding: 10px;
    border-radius: 5px;
}

.habilidades:hover {
    background-color: #CED7F7;
    color: #AB6F4E;
}

.ficha-header {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.espaco {
    display: inline-grid;
    gap: 30px;
}

.lista-habilidades {
  list-style: none;
  padding: 0;
}

.habilidades {
  overflow: hidden;
  cursor: pointer;
  transition: height 1ms ease;
  text-align: left;
}

.habilidades p {
  margin: 8px 0 0;
  text-align: justify;
}

h1, h2, h3, li {
    font-family: Bebas Neue;
    color: 	#bb7000;
}