/* CSS do index */
body {
  background-color: #050000;
  color: #ccc;
  font-family: "Courier New", Courier, monospace;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
  overflow-y: auto;
  text-transform: uppercase;
}

.terminal {
  width: 600px;
  padding: 30px;
  border: 2px solid #444;
  background: rgba(20, 0, 0, 0.6);
  box-shadow: 0 0 15px rgba(255, 0, 0, 0.2);
  position: relative;
}

.umbrella-logo {
  width: 10em;
  display: block;
  margin: 0 auto 20px;
}

.titulos {
  text-align: center;
}

.menu {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 20px;
}

.menu-item {
  border: 1px solid #666;
  padding: 10px;
  text-decoration: none;
  color: #999;
  text-align: center;
  transition: 0.3s;
}

.menu-item:hover {
  background: #ff0000;
  color: #fff;
  border-color: #fff;
  box-shadow: 0 0 10px #ff0000;
}

.creditos {
  margin-top: 30px;
  border-top: 1px solid #333;
  padding-top: 15px;
}

/* CSS dos personagens */

.botao {
  display: inline-block;
  position: absolute;
  height: 550px;
  left: 0;
}

.botao a {
  padding: 8px 15px;
  text-decoration: none;
  background-color: #333;
  border-radius: 10px;
  font-size: 15px;
  color: white;
}

.botao-mapa {
  display: inline-block;
  position: absolute;
  height: 550px;
  left: 100px;
}

.botao-mapa a {
  padding: 8px 15px;
  text-decoration: none;
  background-color: #333;
  border-radius: 10px;
  font-size: 15px;
  color: white;
}
.galeria {
  display: flex;
  gap: 15px;
  justify-content: center;
  padding: 20px;
}

.personagem-box {
  position: relative;
  width: 200px;
  height: 450px;
  overflow: hidden;
  border-radius: 8px;
}

.personagem-box img {
  width: 200px;
  height: 450px;
  object-fit: cover;
  transition: 0.4s;
}

.descricao {
  position: absolute;
  top: 0;
  left: 0;
  width: 200px;
  height: 450px;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  display: flex;
  align-items: center;
  text-align: center;
  opacity: 0;
  transition: 0.3s;
}

.personagem-box:hover .descricao {
  opacity: 1;
}

.personagem-box:hover img {
  transform: scale(1.1);
}

.descricao-lugar {
  padding: 5em;
  position: right;
}

.img-local {
  width: 600px;
  height: auto;
}
