* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background-color: #f5f5f5;
  padding: 40px 20px;
}

.hero-section {
  max-width: 800px;
  margin: 0 auto;
}


h1 {
  text-align: center;
  color: #333;
  font-size: 2.5rem;
  margin-bottom: 40px;
}

.projects-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.project {
  background: white;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 30px;
  transition: all 1s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-shrink: 1;
}

.project h2 {
  color: #333;
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.project a {
  display: inline-block;
  padding: 10px 25px;
  background-color: #007bff;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  text-align: center;
}

.project a:hover {
  transform: scale(1.02);
  background-color: #0056b3;
}

.project:hover {
  transform: scale(1.02) translateY(-3px);
  box-shadow: 2px 2px 5px;
}

@media (min-width: 600px) {
  .projects-container {
    flex-direction: row;
  }

  .project {
    flex: 1;
  }
}
