.bg-welcome {
  background-image: url("../img/welcome.png");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-attachment: scroll;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

.vid-welcome video {
  width: 100%;
  height: 100%;
  border-radius: 5px;
}

.img-modal {
  width: 100%;
  display: flex;
  justify-content: center;
}

.img-modal img {
  width: 100%;
  height: 100%;
  border-radius: 5px;
}

@media only screen and (max-width: 576px) {
  .bg-welcome {
    background-image: url("../img/bg-Phone.jpg");
    background-size: 100% 100%;
    background-repeat: no-repeat;
  }

  .btn-isi-data {
    display: flex;
    justify-content: flex-end;
    position: absolute;
    bottom: 7.5px;
    width: 100%;
    right: 20px;
  }

  .btn-isi-data button {
    background: #fdfdfd;
    border: none;
    width: 50%;
    color: rgba(234, 38, 38, 1);
    font-weight: 700;
    border-radius: 50px;
    padding: 5px;
    font-size: 20px;
  }
}

@keyframes blinker {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.blink {
  text-decoration: blink;
  animation-name: blinker;
  animation-duration: 1s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
  animation-direction: alternate;
}
