/* Basic reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  height: 100%;
  font-family: 'Arial', sans-serif;
}

/* Full-page container */
.error-page {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  /* background: linear-gradient(135deg, #1f1f3a, #3a3a6f); */
  background-color: rgb(152, 9, 9);
  color: #fff;
  text-align: center;
  padding: 20px;
}

/* Content box */
.error-content {
  max-width: 400px;
}

/* Big 404 number */
.error-content h1 {
  font-size: 8rem;
  margin-bottom: 20px;
  color: #f0a500;
}

/* Message */
.error-content p {
  font-size: 1.5rem;
  margin-bottom: 30px;
  line-height: 1.4;
}

/* Button */
.btn-home {
  display: inline-block;
  padding: 12px 24px;
  color: #1f1f3a;
  background-color: #f0a500;
  text-decoration: none;
  font-weight: bold;
  border-radius: 4px;
  transition: transform 0.3s, background 0.3s;
}

.btn-home:hover {
  transform: scale(1.05);
  background-color: #d18e00;
}

/* Responsive for small screens */
@media (max-width: 450px) {
  .error-content h1 {
    font-size: 5rem;
  }

  .error-content p {
    font-size: 1.2rem;
  }

  .btn-home {
    padding: 10px 20px;
    font-size: 1rem;
  }
}
