.flexing {
  position: relative;
  display: flex;
  max-height: 100vh;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  padding: 40px 20px;
}

body {
  background: linear-gradient(90deg, #3f2b96 0%, #a8c0ff 100%);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #ffffff;
}

.item {
  width: 220px;
  height: 260px;
  padding: 20px;
  border-radius: 30px;
  background-color: #1e1e2f;
 box-shadow: 3px 3px 3px 5px rgba(47, 33, 120, 0.6);  
  transition: none;
}

.item h1 {
  background-color: #6a1b9a;
  color: #fff;
  text-align: center;
  padding: 10px;
  border-radius: 20px;
  font-size: 20px;
  margin-bottom: 15px;
}

.item h3 {
  text-align: center;
  margin: 10px 0 5px;
  font-size: 15px;
  color: #c5cae9;
}

.item input {
  display: block;
  margin: 0 auto 10px;
  height: 30px;
  width: 80%;
  padding: 5px 10px;
  border: 2px solid #4a148c;
  border-radius: 10px;
  background-color: #fafafa;
  color: #1e1e1e;
  font-weight: bold;
}

.converter button {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  height: 45px;
  padding: 0 30px;
  background: linear-gradient(to right, #4a148c, #6a1b9a);
  color: white;
  font-weight: bold;
  font-size: 16px;
  border: 2px solid #fff;
  border-radius: 12px;
  cursor: pointer;
}

.converter button:hover {
  background: #0d0d0d;
  border-color: #fff;
  color: #ffffff;
}
