body {
  margin: 0px;
}
#banner {
  position: relative;
  display: block;
  width: 158px;
  height: 598px;
  overflow: hidden;
  border: #d9d9d9 1px solid;
  background: url(../images/bg.png) -628px -184px no-repeat;
}

#ad {
  display: block;
  overflow: hidden;
  width: 158px;
  height: 598px;
  background: url(../images/bv-logo.png) 19px 36px no-repeat;
  background-size: 117px 17px;
  -moz-user-select: -moz-none;
  -khtml-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.headline {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 34px;
  line-height: 42px;
  font-weight: bold;
  text-align: center;
  color: #fff;
  margin-top: 73px;

  opacity: 0;
  animation: fadeIn 1s ease forwards;
  animation-delay: 0.3s;
}

button {
  margin: 0;
  padding: 0;
  border: none;
  cursor: pointer;
  background: none;

  opacity: 0;
  animation: fadePop 1s ease forwards;
  animation-delay: 2s;
}

.button {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 133px;
  height: 40px;
  background: #81b44c;
  overflow: hidden;
  z-index: 1;
  color: #ffffff;
  font-family: Arial, sans-serif;
  font-size: 20px;
  font-weight: bold;
  outline: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  user-select: none;
  border-radius: 4px;

  margin: 15px auto 0px auto;
}

.button:hover {
  background: #638a3a;
}

#image-placeholder-wrapper {
  overflow: hidden;
  width: 121px;
  height: 277px;
  position: absolute;
  right: 0;
  bottom: 0;
}

#image-placeholder-wrapper img {
  width: 166px;
  margin: auto;
}

@keyframes fadePop {
  0% {
    opacity: 0;
    transform: scale(0.9);
  }
  30% {
    opacity: 1;
    transform: scale(1.1);
  }
  50% {
    opacity: 1;
    transform: scale(1);
  }
  70% {
    opacity: 1;
    transform: scale(1.1);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
