* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background-color: #f0f0f0;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%; /* Ekranın tamamını kaplar */
  background: white;
  border-bottom: 1px solid #ccc;
  padding: 10px 20px;
  z-index: 1000;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header .logo {
  font-size: 20px;
  font-weight: bold;
}

header .submit-btn {
  background: #06cc6c;
  color: white;
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  border-radius: 5px;
}

.content-wrapper {
  margin: 80px auto 20px;
  width: 100%; /* Ekranın tamamını kaplar */
  background: white;
  border-radius: 15px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  padding: 15px;
}

.project-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.project {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 8px;
  cursor: pointer;
  transition: box-shadow 0.3s;
}

.project:hover {
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.project img {
  width: 80px; /* Mobilde daha küçük */
  height: 80px;
  border-radius: 8px;
}

.project .info h2 {
  font-size: 16px;
  margin-bottom: 5px;
}

.project .info .description {
  font-size: 14px;
  margin-bottom: 10px;
}

.project .info p {
  margin: 2px 0;
}

footer {
  background: #f5f5f5;
  padding: 15px;
  text-align: center;
  margin-top: 20px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

footer a {
  color: #0077ff;
  text-decoration: none;
}

/* Responsive styles */
@media (max-width: 768px) {
  header {
    padding: 10px 15px;
  }

  .content-wrapper {
    width: 100%;
    margin: 70px 0 10px;
    padding: 15px;
  }

  .project {
    gap: 10px;
  }

  .project img {
    width: 70px;
    height: 70px;
  }

  .project .info h2 {
    font-size: 14px;
  }

  .project .info .description {
    font-size: 12px;
  }

  header .container {
    flex-direction: column;
    gap: 10px;
  }

  header .submit-btn {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .content-wrapper {
    padding: 10px;
  }

  .project {
    flex-direction: column;
    align-items: flex-start;
  }

  .project img {
    width: 100%;
    height: auto;
  }

  .project .info h2 {
    font-size: 16px;
  }

  .project .info .description {
    font-size: 14px;
  }

  footer {
    padding: 10px;
  }
}
