*, *::after, *::before {
    border: 0;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  :root {
    --hue: 65;
    --bkg: var(--hue) 50% 96%;
    --text: var(--hue) 70% 9%;
    --dark: var(--hue) 70% 3%;
  }
  
  body {
    min-height: 100vh;
    background-image: url('../../imagenes/personajes/fondo_cap4.jpg');
    background-size: cover;
    background-position: center;
    display: grid;
    place-items: center;
    animation: fadeInAnimation ease 2s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
  }

@keyframes fadeInAnimation {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.container {
  padding: 0;
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
}

.regreso {
  position: fixed;
  cursor: pointer;
  background: none;
  transform: scale(0.5);
  right: -5px;
  top: -10px;
  z-index: 1;
}

.control {
  position: fixed;
  cursor: pointer;
  background: none;
  transform: scale(0.15);
  z-index: 2;
  right: -17em;
  bottom: -10em;
}

.image-container {
  display: flex;
  justify-items: center;
  position: relative;
  margin: auto;
  padding: 0;
  width: 1122px;
  height: 700px;
}

.portada {
  position: absolute;
  display: block;
  margin: auto;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  max-width: 100%;
  }

.btn {
    position: absolute;
    width: 2.5%;
    height: 4%;
    appearance: button;
    cursor: pointer;
    text-decoration: none !important;
    background-color: #e5e4d610;
    /* background-color: #e5e4d6CC; */
    transition: background-color 0.4s ease-in-out;
  }
  
.btn:is(:hover, :focus) {
    background-color: #e5e4d630;
  }

@media only screen and (min-width: 1400px) and (min-height: 850px) {
  .image-container {
    width: 1376px;
    height: 850px;
  }
}