body {
  background-color: #fff9f9;
  font-family: "Open Sans", sans-serif;
  margin: 0;
  padding: 0;
}

.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 20px;
  text-align: center;
}

.server-maintenance {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

.logo img {
  max-width: 150px;
  margin-bottom: 20px;
}

.maintenance-content .title {
  font-size: 2rem;
  color: #460c10;
  margin-bottom: 10px;
}

.maintenance-content .title span {
  color: #d2242e;
  transition: color 0.5s ease;
}

.maintenance-content .title:hover span {
  color: #460c10;
}

.message {
  font-size: 1rem;
  font-weight: 600;
  color: #460c10;
  margin: 10px 0;
}

.image img {
  max-width: 100%;
  height: auto;
}

@media (max-width: 768px) {
  .maintenance-content .title {
    font-size: 1.5rem;
  }

  .message {
    font-size: 0.9rem;
  }
}
