.box {
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50vh;
  width: 100%;
  font-family: "Segoe UI", Arial, sans-serif;
  text-align: center;
  flex-direction: column;
  z-index: 1; /* Keeps content above logo */
}





.errorTitle {
  text-align: center;
  color: var(--accent-primary);
  font-size: 64px;
  font-weight: 900;
}
.errorOtherText {
  text-transform: uppercase;
  font-weight: 900;
}

.errorBtn button {
  color: var(--text-color);
  text-transform: uppercase;
  font-size: 29px;
  background: var(--accent-secondary);
  border: 3px solid var(--accent-primary);
  padding: 10px 20px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
  border-radius: 10px;
  font-weight: 900;
  width: 290px;
  transition: 0.3s ease-in-out;
}