main {
  flex: 1;
}

footer {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 15px;
  background-color: #2b2b2b;
}

@media only screen and (max-width: 700px) {
  footer {
    margin-bottom: 64px;
  }
}

footer .content-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 750px;
}

footer .content-footer text {
  font-size: 14px;
  color: #f1f1f1;
}

@media only screen and (max-width: 1080px) {
  footer .content-footer text {
    font-size: 12px;
  }
}

footer .content-footer div {
  display: block;
  margin-top: 7px;
}

footer .content-footer div .link {
  font-size: 14px;
  color: #b0aeae;
  margin-top: 10px;
  text-decoration: none;
  transition: 0.2s;
}

@media only screen and (max-width: 1080px) {
  footer .content-footer div .link {
    font-size: 12px;
  }
}

footer .content-footer a:hover {
  text-decoration: underline;
  color: #f1f1f1;
}