.ft {
  background-color: var(--secondary);
  color: var(--background-light);
  text-align: center;
  padding: 20px;
  width: 100%;
  flex: 1;
  font-size: 15px;
}

.ft table {
  width: 60%;
  border-collapse: collapse;
  margin: 0 auto;
  table-layout: fixed;
}

.ft th,
.ft td {
  padding: 2px 20px;
  text-align: center;
}

.ft tr {
  vertical-align: middle;
  padding-bottom: 20px;
}

.ft a {
  text-decoration: none;
  color: inherit;
}

.ft a:hover {
  color: var(--background-lighter);
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.3s ease;
}

@media (max-width: 1200px) {
  .ft th {
    display: none;
  }

  .ft td {
    display: block;
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 10px;
  }
}
