@import url("https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&display=swap");

body {
  font-family: "Roboto Condensed", sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  margin: 0;
  background-color: #fff;
}

* {
  font-family: "Roboto Condensed", sans-serif;
}

.title {
  font-weight: 700; /* Bold */
}

.instructions {
  font-weight: 400; /* Regular */
}
.container {
  background: white;
  padding: 35px;
  border-radius: 12px;   
  text-align: center;
  width: 100%;
  max-width: 540px; 
  margin: 20px;
} 

.pdf-icon {
  width: 70px;
  height: auto;
  margin-bottom: 25px;
}

.title {
  color: #2c3e50;
  font-size: 24px;
  margin-bottom: 20px;
  font-weight: 500;
}

.instructions {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 30px;
  color: #444;
}

.key-combo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  vertical-align: middle;
  background: #f8f9fa;
  padding: 5px 10px;
  border-radius: 6px;
  margin: 0 4px;
}

.key-img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  vertical-align: middle;
}

.buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-top: 25px;
}

.buttons button {
  padding: 14px 28px;
  border: none;
  cursor: pointer;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.buttons button:hover {
  transform: translateY(-2px);
}

.solve {
  background-color: #2563eb;
  color: white;
}

.solve:hover {
  background-color: #1d4ed8;
}

.retry {
  background-color: #e5e7eb;
  color: #374151;
}

.retry:hover { 
  background-color: #d1d5db;
}