.foot{
  width: 100%;
  background: linear-gradient(180deg, #0c1118 0%, #05070c 100%);
  color: #e9eef6;
  padding: 80px 0;
  display: flex;
  justify-content: center;
}

.foot .content{
  width: min(900px, 90vw);
  display: grid;
  gap: 24px;
}

.foot .content .posted{
  font-family: var(--font-body);
  line-height: 1.8;
  color: #d7e0ec;
}

.foot .content .icon{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  color: #e9eef6;
}

.foot .content .icon span{
  font-size: 1.8em;
  transition: transform 0.2s ease, color 0.2s ease;
}

.foot .content .icon span:hover{
  color: #7aa6ff;
  transform: translateY(-2px);
}

.foot .link{
  width: 100%;
}

@media screen and (max-width: 900px){
  .foot{
    padding: 60px 0;
  }
  .foot .content{
    width: 92vw;
  }
}
