@import url("https://fonts.googleapis.com/css2?family=Lobster&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Anton&display=swap");
.body {
  color: #2c385e;
  transition: all 2s ease-in-out;
}

.background {
  background-color: #212a47;
  background-image: linear-gradient(180deg, #212a47, #2c385e);
}

#contentDiv {
  background-color: #fff;
  padding: 20px;
  max-width: 800px;
  margin: 0 auto;
  margin-bottom: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
}
@media (max-width: 820px) {
  #contentDiv {
    margin: 0 10px;
    height: 100vh;
    overflow-y: scroll;
  }
}

.paddingOptions {
  padding: 20px 20px 20px;
}

.merah {
  background-color: #eeb111;
}

.font-lobster {
  font-family: "Lobster", cursive;
}

#nav_top img {
  width: 90px;
}

.loader {
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: rgba(11, 11, 11, 0.631372549);
  cursor: pointer;
}

/*
  Set the color of the icon
*/
svg path,
svg rect {
  fill: #ff6700;
}

.box {
  position: relative;
  width: 500px; /* atur lebar box sesuai kebutuhan */
  height: 500px; /* atur tinggi box sesuai kebutuhan */
  margin: 0 0 0 0; /* agar box berada di tengah layar */
  padding: 0 0 0 0;
}

.gambar-template {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover; /* agar gambar selalu mengisi seluruh area */
}

.to {
  position: absolute;
  top: 2%;
  left: 10%;
  font-size: 35px;
  max-width: 80%;
  font-weight: bold;
  color: #69453c;
}

.toImg {
  position: absolute;
  top: 9.3%;
  left: 5%;
  font-size: 25px;
  max-width: 80%;
  font-weight: bold;
  color: #69453c;
  transform: rotate(-0.3deg);
}

.gambar {
  position: absolute;
  transform: rotate(-0.3deg);
  top: 17.5%;
  left: 22%;
  width: 55%;
  height: 55%;
  -o-object-fit: cover;
     object-fit: cover; /* agar gambar selalu mengisi seluruh area */
}

.pesanImg {
  position: absolute;
  top: 82%;
  left: 50%;
  min-width: 98%;
  margin: auto;
  transform: rotate(-0.3deg);
  color: #000000;
  transform: translate(-50%, -50%); /* agar pesan selalu berada di tengah tengah box */
  line-height: 1.2em; /* atur jarak antar baris relatif terhadap ukuran font */
  text-align: center; /* selalu posisikan teks di tengah elemen */
}

.pesan {
  position: absolute;
  top: 55%;
  left: 50%;
  min-width: 80%;
  margin: auto;
  color: #000000;
  transform: translate(-50%, -50%); /* agar pesan selalu berada di tengah tengah box */
  line-height: 1.2em; /* atur jarak antar baris relatif terhadap ukuran font */
  text-align: center; /* selalu posisikan teks di tengah elemen */
}

.typewriter {
  position: relative;
  border-right: 0.15em solid orange;
  letter-spacing: 0.15em;
  animation: typing 1s steps(40, end), blink-caret 0.75s step-end infinite;
}

/* animasi typing */
@keyframes typing {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}
/* animasi blink-caret */
@keyframes blink-caret {
  from, to {
    border-color: transparent;
  }
  50% {
    border-color: orange;
  }
}/*# sourceMappingURL=s.css.map */