@import url('https://fonts.googleapis.com/css2?family=Righteous&display=swap');
*{
  padding: 0;
  margin: 0;
  transition: .5s;
}
.bg{
  width: 100%;
  height: 100vh;
  background-color: #ECCDB4;
  display: flex;
  justify-content: center;
  align-items: center;
}
div.pesan{
  width: 80px;
  background-color: transparent ;
  position: absolute;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  
}
div.pesan img.pesan{
  width: 100%;
  animation: imgPesan 1s infinite ease-in-out ;
}
div.pesan span{
  font-weight: bold;
  letter-spacing: 2px;
  font-size: 14px;
  user-select: none;
}
.content{
  width: 0;
  height: 0;
  padding: 5px;
  background-color: rgba(255,255,255, .5);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(0,0,0, .1);
  overflow: hidden;
}
.content > *, div.pesan span{
  font-family: 'Righteous', cursive;
  color: black;
}
.content .kado{
  width: 150px;
  height: 170px;
  border: 2px solid rgba(0,0,0, .2);
}
.content .kata{
  width: 100%;
  margin: 20px 0;
  text-align: center;
  font-size: 25px;
}
.content button{
  width: 40%;
  margin: 0 10px;
  height: 60px;
  font-weight: bold;
  font-size: 16px;
  border: none;
  border-radius: 10px;
  margin-top: 40px;
  margin-bottom: 30px;
  background-color: #FFE5CA;
  letter-spacing: 2px;
}


@keyframes imgPesan {
  0%,100%{
    transform: rotate(10deg);
  }
  50%{
    transform: rotate(-10deg);
  }
}
