body {
  font-family: Arial, sans-serif;
  background: linear-gradient(135deg, #ff9a9e, #fad0c4);
  text-align: center;
  margin: 0;
  padding: 0;
}

header {
  background: #ff6b81;
  padding: 20px;
  color: white;
}

nav ul {
  list-style: none;
  padding: 0;
}

nav ul li {
  display: inline;
  margin: 0 15px;
}

nav ul li a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s, text-decoration 0.3s;
}

nav ul li a:hover {
  color: #fad0c4;
  text-decoration: underline;
}

main {
  padding: 50px;
}

img {
  border-radius: 10px;
  transition: transform 0.3s ease-in-out;
}

img:hover {
  transform: scale(1.05);
}

footer {
  background: #ff6b81;
  color: white;
  padding: 10px;
  position: relative;
  bottom: 0;
  width: 100%;
}
/* 404 */
.not-found {
  text-align: center;
  background: linear-gradient(135deg, #ff9a9e, #fad0c4);
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.error-container h1 {
  font-size: 6rem;
  color: #ff6b81;
  margin: 0;
}

.error-container p {
  font-size: 1.5rem;
  color: #333;
}

.home-button {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 20px;
  background: #ff6b81;
  color: white;
  font-size: 1.2rem;
  text-decoration: none;
  border-radius: 5px;
  transition: background 0.3s ease, transform 0.2s;
}

.home-button:hover {
  background: #ff3b55;
  transform: scale(1.05);
}
