.banner img{
  top: -15%;
}

.credits{
  width: 86%;
  padding: 15px 7%;
  background-color: #131313;
}
.credits ul{
  padding: 0;
  display: flex;
  justify-content: center;
  align-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.credits ul li{
  width: 100%;
  display: inline-block;
  position: relative;
  list-style: none;
  top: 0px;
  padding: 30px;
  margin: 15px 0;
  border-radius: 30px;
  max-width: 1300px;

  background-color: #2e2e2e;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.3);

  display: flex;
  justify-content: center;
  align-content: space-between;
  align-items: center;

  transition: background-color 0.15s, top 0.15s;
}
.credits ul li:hover{
  background-color: #343434;
  top: -2px;
}

.credits ul li div{
  width: 100%;
  text-shadow: 3px 3px 10px rgba(0, 0, 0, .8);
}
.credits ul li h2{
  margin-top: 0px;
  margin-bottom: 5px;
  font-size: 30px;
}
.credits ul li h3{
  margin: 0;
  font-size: 17px;
  font-weight: lighter;
  font-style: italic;
  display: inline-block;
}
.credits ul li h3.divider{
  margin: 0px 0.5em;
}
.credits ul li p{
  margin: 0;
  margin-top: 15px;
  text-align: justify;
  text-shadow: none;
}
.credits ul li a{
  font-size: 18px;
  text-decoration: none;
  font-weight: bolder;
  text-align: center;
  white-space: nowrap;

  padding: 15px;
  border-radius: 30px;
  margin-left: 25px;

  background-color: #141414;
  box-shadow: 3px 3px 15px rgba(0, 0, 0, 0.3);

  transition: background-color 0.15s;
}
.credits ul li a:hover{
  background-color: #212121;
}
.credits ul li a.disabled{
  user-select: none;
  font-size: 15px;
  box-shadow: none;
  background-color: #212121;  
}
.credits ul li a.disabled:hover{
  background-color: #1c1c1c;
}