body {
  text-align: center;
  background: #000;
  color: white;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

h1 {
  font-size: 2.5rem;
  margin-top: 20px;
}

h2 {
  margin: 10px 0 30px;
  font-size: 1.3rem;
  color: #ccc;
}

.btn-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.line-one,
.line-two {
  display: flex;
  gap: 20px;
}

.btn {
  width: 160px;
  height: 100px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(255,255,255,0.2);
  cursor: pointer;
  transition: transform 0.3s;
}

.btn:hover {
  transform: scale(1.05);
}

.btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.btn {
  cursor: pointer;
  transition: transform 0.1s ease, box-shadow 0.1s ease;
}

.pressed {
  transform: scale(1.1);
  box-shadow: 0 0 20px #ffd700;
}
