*, *::after, *::before {
    border: 0;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    min-height: 100vh;
    display: grid;
    place-items: center;
    background-size:cover;
    animation: fadeInAnimation ease 2s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}

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

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

.container {
    /* width: 97%; */
    max-width: 100vw;
    display: flex;
    margin: auto;
    align-content: flex-start;
    justify-content: flex-start;
}

.image-container {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: center;
    /* max-height: 740px; */
}

.portada {
    width: 100%;
    /* max-height: 740px; */
}