/* Reset some default styles */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f0f0f0;
}

/* Container settings */
.page_404 {
  background-color: #fff;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.container {
  max-width: 1200px;
  padding: 0 20px;
  text-align: center;
}

.four_zero_four_bg {
  font-size: 150px;
  font-weight: bold;
  color: #ff5722;
}

.contant_box_404 {
  margin-top: 20px;
}

h3 {
  font-size: 30px;
  color: #333;
}

h2 {
  font-size: 32px;
  color: #555;
}

p {
  color: #777;
}

.link_404 {
  text-decoration: none;
  font-size: 18px;
  color: #ff5722;
  padding: 10px 20px;
  border: 2px solid #ff5722;
  border-radius: 4px;
  margin-top: 20px;
  display: inline-block;
  transition: all 0.3s ease;
}

.link_404:hover {
  background-color: #ff5722;
  color: white;
  border-color: #ff5722;
}

/* Add animation */
.four_zero_four_bg {
  animation: bounce 1.5s infinite;
}

@keyframes bounce {
  0% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
  100% { transform: translateY(0); }
}
