/* Reset and Base Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  width: 100%;
  height: 100%;
  background-color: #454d52; /* Match the dark gray background from the screenshot */
  font-family: Georgia, Cambria, "Times New Roman", Times, serif; /* Serifs match the screenshot text */
  overflow: hidden;
}

/* Centered Container */
.certificate-container {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

/* Certificate Button */
.certificate-button {
  display: inline-block;
  background-color: #3070bf; /* User requested color */
  color: #ffffff;
  font-size: 14px;
  text-decoration: none;
  padding: 10px 20px; /* User requested padding */
  border-radius: 8px; /* User requested border-radius */
  width: 156px; /* User requested width */
  text-align: center;
  transition: background-color 0.25s ease, transform 0.15s ease;
  user-select: none;
}

/* Hover & Focus Interactions for Dynamic feel */
.certificate-button:hover {
  background-color: #215ec0; /* Slightly darker blue on hover */
  transform: scale(1.02);
}

.certificate-button:active {
  transform: scale(0.98);
}

.certificate-button:focus-visible {
  outline: 3px solid rgba(48, 112, 191, 0.5);
  outline-offset: 3px;
}
