body {
  font-family: Arial, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
  background: linear-gradient(160deg, #2b07f7, #f30909);
}
.container {
  background-color: rgba(147, 148, 163, 0.5);
  padding: 50px;
  border-radius: 30px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.7);
  width: 50%;
}
h2 {
  text-align: center;
  font-size: 30px;
}
form {
  text-align: center;
}
label {
  display: block;
  margin-bottom: 10px;
}
input[type="text"] {
  width: 60%;
  padding: 8px;
  border: 2px solid #ccc;
  border-radius: 100px;
  box-sizing: border-box;
  margin-bottom: 10px;
  background-color: transparent;
  font-size: 18px;
  text-align: center;
}
button {
  padding: 10px 20px;
  background-color: #a90523;
  color: white;
  border: none;
  cursor: pointer;
  padding-top: 10px;
}
button:hover {
  background-color: #72031d;
}
.result {
  margin-top: 20px;
  text-align: center;
}
.img-container img {
  width: 300px; /* Atur lebar kontainer */
  height: 300px; /* Atur tinggi kontainer */
  border: 1px solid #000; /* Batas kontainer untuk visualisasi */
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden; /* Sembunyikan bagian gambar yang melampaui kontainer */
}
.img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Pastikan gambar menutupi kontainer tanpa mengubah rasio aspek */
}
