.git-repo {
  background-color: #F5F5F5;
  height: 100%;
  width: 100%;
  padding: 5%;
  border-radius: 10px;
  box-shadow: 2px 2px 5px #F5F5F5;
}

.git-repo:hover {
  background-color: lightgray;
  height: 100%;
  width: 100%;
  padding: 5%;
  border-radius: 10px;
}


.git-repo a {
  text-decoration: none;
}

.git-repo-description , .git-repo-bottom-section{
  font-size: larger;
  text-decoration: none;
}

.git-repo-title b {
  font-size: larger;
  color: black;

}

.git-repo-description {
  font-size: large;
  color: #041733;
  font-style: italic;
  font-weight: normal;
}

.git-repo-bottom-section {
  font-size: large;
  color: darkslategray;
}

* {
  box-sizing: border-box;
}

.slider {
  width: 300px;
  text-align: center;
  overflow: hidden;
}

.slides {
  display: flex;

  overflow-x: auto;
  scroll-snap-type: x mandatory;



  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;

  /*
  scroll-snap-points-x: repeat(300px);
  scroll-snap-type: mandatory;
  */
}
.slides > div {
  scroll-snap-align: start;
  flex-shrink: 0;
  width: 300px;
  height: 300px;
  margin-right: 50px;
  border-radius: 10px;
  background: #eee;
  transform-origin: center center;
  transform: scale(1);
  transition: transform 0.5s;
  position: relative;

  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 70px;
}
.slides > div:target {
/*   transform: scale(0.8); */
}
.git-repo img {
  object-fit: contain;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
a {
  color: black;
}

.slider > a {
  display: inline-flex;
  width: 1rem;
  height: 1rem;
  background: lightgray;
  text-decoration: none;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 0 0.5rem 0;
  position: relative;
  font-size: small;
}
.slider > a:active {
  top: 1px;
}
.slider > a:focus {
  background: black;
}

.slides::-webkit-scrollbar {
  height: 6px;
}

.slides::-webkit-scrollbar-track {
  background: lightblue;
}

.slides::-webkit-scrollbar-thumb {
  background:lightslategray;
  border-radius: 6px;
}

.git-repo-topic:hover {
  color: #041733;
}