#footer{
  height: 160px;
  width: 100%;
}
#footer .odkazy{
  float: left;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 90px;
  width: 100%;
  background: linear-gradient(90deg,rgba(131, 58, 180, 1) 0%, rgba(253, 29, 29, 1) 50%, rgba(252, 176, 69, 1) 100%);
}
#footer .odkazy a{
  font-size: 18px;
  text-decoration: none;
  color: var(--base-color);
  margin: 0 15px;
  transition: 0.3s ease;
}
#footer .odkazy a:hover{
  color: var(--tercial-color);
}
#footer .odkazy a i{
  font-size: 25px;
}
#footer .copyright{
  float: left;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 70px;
  width: 100%;
}
#footer .copyright a{
  text-decoration: none;
  color: var(--tercial-color);
}