body {
  font-family: Arial, Helvetica, sans-serif;
  background: #f5f5f5;
  margin: 0;
  padding: 40px;
  color: #222;
}

h1 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 36px;
}

#repositorios {
  max-width: 900px;
  margin: auto;
}

#repositorios div {
  background: white;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 8px;
  border: 1px solid #ddd;
  transition: transform 0.2s, box-shadow 0.2s;
}

#repositorios div:hover {
  transform: scale(1.02);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

#repositorios h2 {
  margin-top: 0;
  color: #0366d6;
}

#repositorios p {
  margin: 10px 0;
  line-height: 1.4;
}

#repositorios a {
  display: inline-block;
  margin-top: 10px;
  text-decoration: none;
  background: #0366d6;
  color: white;
  padding: 8px 14px;
  border-radius: 5px;
}

#repositorios a:hover {
  background: #024c9a;
}