* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.app-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.main-content {
  flex-grow: 1;
}

.error-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background-color: transparent;
}

.error-code {
  font-size: 6rem;
  font-weight: bold;
  color: black;
}

.error-title {
  margin-top: 1rem;
  font-size: 1.25rem;
  font-weight: 600;
  color: black;
}

.error-message {
  margin-top: 0.5rem;
  color: black;
}

.error-button {
  margin-top: 1.5rem;
  padding: 0.5rem 1.5rem;
  color: black;
  background-color: #facc15;
  border: none;
  border-radius: 0.5rem;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
}

.error-button:hover {
  background-color: #fcd34d;
  transform: scale(1.1);
}
