:root {
  --theme-color: #e0e0e0;
}

body, p {
  margin: 0;
  padding: 0;
}

html,
body {
  height: 100%;
  width: 100%;
  background-color: var(--theme-color);
  min-height: 100vh;
  max-width: 100vw;
  display: grid;
  place-items: center;
}

.engrave {
  font-family: "Lucida Console", "Courier New", monospace;
  font-size: 50px;
  font-weight: bold;
  color: transparent;
  background-color: rgba(82, 96, 117, 0.5);
  -webkit-background-clip: text;
          background-clip: text;
  text-shadow: 0px 5px 6px rgba(255, 255, 255, 0.5),
    2px 3px 3px rgba(255, 255, 255, 0.2);
}

.container {
  position: relative; /* Make the container a reference for absolute positioning */
  width: 100%; /* Full width */
  height: 100vh; /* Full viewport height (or any desired height) */
  border: 1px solid #ccc; /* Optional: for visual reference */
}

.centered-text {
  position: absolute; /* Absolute positioning */
  top: 50%; /* Move down by 50% of the container's height */
  left: 50%; /* Move right by 50% of the container's width */
  transform: translate(-50%, -50%); /* Shift back by 50% of the element's width and height */
  text-align: center; /* Center the text horizontally */
  font-size: 2rem; /* Optional: Adjust font size */
  white-space: nowrap; /* Prevent text from wrapping */
}

    /* Responsive font size */
@media (max-width: 768px) {
  .engrave {
    font-size: 4rem;
  }
}

@media (max-width: 480px) {
  .engrave {
    font-size: 2rem;
  }
}