footer{
  width: 100%;
  height: 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #4a4a4e;
  background-color: var(--darkest);
  box-shadow: 0px -10px 10px rgba(0, 0, 0, 0.1);
  cursor:default;
}
footer h2{
  margin-bottom: 25px;
}
footer p{
  font-size: 14px;
  text-align: center;
  margin-bottom: 10px;
}
footer a{
  color: #555558;
  transition: 0.2s;
  padding: 5px 10px;
  border-radius: 8px;
}
footer a:hover{
  background-color: var(--navigation);

}
