*,*:before, *:after{
  -webkit-tap-highlight-color:transparent ;
}

*{
  padding: 0;
  margin: 0;
  font-family: arial;
  box-sizing: border-box;
}
button{
  cursor: pointer;
}

.bg {
  width: 100%;
  height: 100vh;
  background-image: url('asset/bg.png'); /* Ganti dengan URL gambar */
  background-size: cover; /* Agar gambar memenuhi seluruh layar */
  background-position: center; /* Pusatkan gambar */
  background-repeat: no-repeat; /* Hindari pengulangan gambar */
  display: flex;
  justify-content: center;
  align-items: center;
}

.content {
  width: 330px;
  height: 400px;
  background-color: rgba(255,255,255, .3);
  border-radius: 5px;
  position: relative;
  transition: .4s;
  padding: 2px 10px;
}
.atas,.bawah{
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: .8s;
}
.content .atas{
  height: 70%;
}
.atas img{
  width: 300px;
}
.content .bawah{
  height: 30%;
  position: relative;
}
.bawah p{
  text-align: center;
  font-weight: bold;
  letter-spacing: 2px;
  padding: 0 5px;
  user-select: none;
  line-height: 20px;
}
.bawah button{
  padding: 2px;
  width: 50%;
  height: 40px;
  border: none;
  background-color: #F4B183;
  border-radius: 5px;
  font-weight: bold;
  letter-spacing: 1px;
  position: absolute;
}
#link{
  text-decoration: none;
  padding: 10px 10px;
  background-color: #F4B183;
  position: absolute;
  z-index: 3;
  display: none;
  color: black;
  border-radius: 5px;
  letter-spacing: 1px;
  font-weight: bold;
  transition: .3s;
}
#btn{
  z-index: 2;
}
#btn_3{
  display: none;
}
#btn_2:hover{
  animation: btn2 .3s forwards ;
}
@keyframes btn2{
  0%,100%{
    transform: scale(1);
  }50%{
    transform: scale(1.1);
  }
}

#kotak-pesan{
  width: 100%;
  height: 100vh ;
  background: #FEA1A1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  z-index: 9;
}
.pesan{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-content: space-between;
  height: 100px;
}
#kotak-pesan button{
  width: 100%;
  padding: 2px;
  height: 40px;
  border: none;
  background-color:#F4B183;
  border-radius: 5px;
  font-weight: bold;
  letter-spacing: 1px;
}

#nama{
  color: rgb(0, 0, 0);
  letter-spacing: 1px;
  padding: 0 5px;
}
#nama2{
  padding: 0 5px;
}