body {
  background: #c1c6c9;
  font-size: 22px;
  font-weight: bold;
  font-family: Arial, sans-serif;
}

main {
  width: 800px;
  height: 300px;
  background: #ecf0f1;
  padding: 10px;
  border: 4px solid #fff;
  border-radius: 12px;
  margin: 10px auto;
  display: flex;
  justify-content: space-between;
}

.panel img {
  width: 180px;
  height: 250px;
  margin-bottom: 4px;
}

.stop {
  cursor: pointer;
  width: 180px;
  height: 32px;
  background: #ef454a;
  box-shadow: 0 4px 0 #d1483e;
  border-radius: 16px;
  line-height: 32px;
  text-align: center;
  font-size: 18px;
  color: #fff;
  user-select: none;
}

#spin {
  cursor: pointer;
  width: 280px;
  height: 36px;
  background: #3498db;
  box-shadow: 0 4px 0 #2880b9;
  border-radius: 18px;
  line-height: 36px;
  text-align: center;
  color: #fff;
  user-select: none;
  margin: 0 auto;
}

.unmatched {
  opacity: 0.5;
}

.inactive {
  opacity: 0.5;
}



#result {
  position: 300px;
  width: 200px;
  background: #cff1d2;
  padding: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  top: 40px;
  left: 0;
  right: 0;
  margin: 10px auto;
  border-radius: 8px;
  text-align: center;
  transition: 1.0s;
}

#result.hidden {
  transform: translateY(-1000px);
}

#result > p {
  font-size: 30px;
}

#result > a {
  display: block;
  text-decoration: none;
}
.panel2 img {
  width: 200px;
  height: 220px;
  margin-bottom: 10px;
}