body {
  font-family: sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
  background-color: #f0f2f5;
  flex-direction: column; /* Mengubah flex-direction agar teks berjalan berada di bawah */
}

.container {
  background-color: #fff;
  padding: 2em;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
}

img {
  width: 150px;
  height: 150px;
  box-shadow: 0px 0px 5px #0000;
}

h1 {
  color: #333;
}

form {
  display: flex;
  flex-direction: column;
  gap: 1em;
  margin-bottom: 1.5em;
}

label {
  text-align: left;
  color: #555;
}

input {
  padding: 0.8em;
  border-radius: 5px;
  border: 1px solid #ddd;
}

button {
  padding: 1em;
  border: none;
  background-color: #1b7ce3;
  color: #fff;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1em;
}

button:hover {
  background-color: #0250a3;
}

#result {
  font-size: 1.2em;
  font-weight: bold;
  color: #333;
}

/* Gaya untuk running text */
.running-text {
  background-color: #add8e6; /* Biru muda */
  color: #ff0000; /* Merah */
  font-weight: bold;
  padding: 1em;
  width: 100%;
  position: fixed; /* Jadikan posisi fixed di bagian bawah */
  bottom: 0;
  left: 0;
  text-align: center;
}
