html,
body {
  overflow-x: hidden;
  scroll-behavior: smooth;
  background-color: #ffa6a6;
  height: 100vh;
  margin: 0;
  padding: 0;
  width: 100%;
}

body {
  height: 100%;
}

#bg-image {
  background: url("https://landing-page.goingapp.pl/latonapradze-popup/images/background_lnp.jpg")
    transparent no-repeat center center;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  height: 100vh;
  display: block;
  width: 100vw;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  animation: ease-out blur 500ms forwards 500ms;
  z-index: 0;
}

.close {
  color: #ffffff;
  display: block;
  text-decoration: none;
  font-size: 5rem;
  position: absolute;
  top: 16px;
  right: 32px;
  z-index: 2;
}

.popup {
  align-items: center;
  display: flex;
  justify-content: center;
  opacity: 0;
  position: relative;
  margin: auto;
  width: 100%;
  height: 100%;
  text-align: center;
  animation: ease-out opacity 500ms forwards 1000ms;
}

.popup > a {
  margin: auto;
  max-width: 90%;
  max-height: 90%;
  vertical-align: center;
}

.popup > a > img {
  box-shadow: rgba(0, 0, 0, 0.2) 10px 10px 10px;
  width: 100%;
}

@keyframes blur {
  from {
    filter: blur(0) brightness(100%);
  }
  to {
    filter: blur(10px) brightness(90%);
  }
}

@keyframes opacity {
  from {
    opacity: 0;
  }
  to {
    opacity: 100%;
  }
}
