body {
  font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
  padding: 0.5em;
}

input {
  height: 1.5em;
  border: 1px solid grey;
  border-radius: 2px;
  outline: none;
}

input:focus,
input:visited,
input:active,
input:hover {
  border: 2px solid rgb(131, 216, 245);
}

.btn {
  height: 1.5em;
  background-color: blue;
  color: white;
  width: 5em;
  height: 2em;
  font-size: 12px;
  border: 1px solid blue;
  outline: none;
}
main {
  width: 80vw;
  margin-top: 0.5em;
}

.repoBox {
  width: 100%;
  height: 15vh;
  text-align: left;
  border: 0.5px solid grey;
  border-bottom: .1px solid grey;
  border-radius: 2px;
  padding: 0.5em;
}

.pDiv {
  display: flex;
}

.pDiv p {
  width: 50%;
}

.pDiv p:first-child{
    font-weight: bold;
}
.pDiv p:last-child {
  text-align: end;
  font-size: 13px;
  color: #4a4949;
}

.repoBox .link {
  text-decoration: none;
  color: black;
}

.repoBox:hover{
    background-color: rgb(227, 243, 248);
}