body, html {
  background-color: #000;
  font-family: 'Palanquin Dark', sans-serif;
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  max-height: 100vh;
}

* {
  box-sizing: border-box;
}

.wrap {
  display: flex;
  width: 100%;
/*  max-width: 720px; KARIM */
  margin: 0;
  padding: 0;
}

.images {
    position: absolute;
}
.bg {
    width: 100vw;
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -10;
    
    &:not(:first-child) {
    position: absolute;
    top: 0;
    right: 0;
    }
}

.bg::before {
    content: "";
    position: absolute;
    z-index: -1000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
}

.text-center {
    display: flex;
    position: absolute;
    background: transparent;
    flex-direction: column;
    width: 100vw;
    height: 100vh;
    text-align: center;
    justify-content: center;
    align-items: center;
    z-index: 100;
    padding: 2rem;
  }
  
  .text-fade {
    opacity: 1;
  }
  

