
.footer{
  background-color: rgb(44, 38, 38);
  width: 100%;
  box-shadow: 0px -10px 10px rgb(139, 137, 137);
  padding: 20px 0px;
}

.details{
  color: #ffffff;
  font-size: small;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
  gap: 10px;
}

.links img{
  width: 25px;
  transition-duration: 0.15s;
}
.links img:hover{
  transform: scale(1.3);
  filter: drop-shadow(0px 0px 2px yellow);
}
.links a{
  margin-left: 8px;
  margin-right: 8px;
}

.copyright{
  color: white;
}