* {
  margin: 0;
  padding: 0;
  outline: none;
  border: none;
}

body {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  background: url('../assets/goku.png') no-repeat center/cover;
  font-family: "Josefin Sans", sans-serif;
}

.container {
  display: grid;
  place-items: center;
  background: #8257e5;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 14px 28px, rgba(0, 0, 0, 0.22) 0px 10px 10px;
  border-radius: 8px;
  width: 600px;
  height: 300px;
  margin: 0 15px;
  padding: 16px;
}

.input-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.input-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 24px;
}

.input-field input {
  height: 40px;
  padding: 0 12px;
  border-radius: 4px;
}

button {
  cursor: pointer;
  padding: 8px 16px;
  border-radius: 4px;
  background: #6a14d9;
  transition: .3s ease-out;
  font-size: 24px;
  color: aliceblue;
}

button:hover {
  opacity: 0.9;
}

#result {
  font-size: 32px;
  font-weight: bold;
}