body {
  margin: 0;
  background-color: black;
  color: white;
  font-family: 'Bebas Neue', Impact, sans-serif;
}

.back-button {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background-color: red;
  color: white;
  text-decoration: none;
  padding: 10px 20px;
  font-size: 30px;
  font-weight: bold;
  border: none;
  border-radius: 0;
  display: inline-block;
  clip-path: polygon(20% 0%, 100% 0%, 80% 100%, 0% 100%);
  z-index: 100;
}

.image-project-container {
  max-width: 900px;
  margin: 100px auto 60px auto;
  padding: 0 20px;
  text-align: center;
}

.project-title {
  font-size: 48px;
  margin-bottom: 30px;
}

.project-description {
  font-size: 20px;
  color: #ccc;
  margin-bottom: 40px;
  line-height: 1.6;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.project-image-wrapper {
  display: flex;
  justify-content: center;
}

.project-image {
  width: 90%;
  max-width: 700px;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
  .project-title {
    font-size: 32px;
  }

  .project-description {
    font-size: 16px;
  }

  .back-button {
    font-size: 18px;
    padding: 8px 16px;
  }
}
