footer {
  background-color: #f0f0ff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 20px 60px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
footer .networks {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
footer .networks .network {
  color: #495e51;
  width: 35px;
  height: 35px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: solid 1px #d8d8d8;
  border-radius: 50%;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
footer .networks .network:hover {
  background-color: #495e51;
  color: #fff;
  border-color: #495e51;
  cursor: pointer;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
footer .networks span {
  font-weight: 500;
}
footer .createdBy {
  font-size: 18px;
}
footer .createdBy a {
  color: #495e51;
  font-weight: 600;
}

@media (max-width: 545px) {
  footer {
    padding: 20px 40px;
  }
  footer .networks span {
    font-size: 14px;
  }
  footer .createdBy {
    font-size: 14px;
  }
}
@media (max-width: 430px) {
  footer {
    padding: 20px 15px;
  }
}
@media (max-width: 370px) {
  footer .networks {
    gap: 8px;
  }
}
@media (max-width: 350px) {
  footer {
    padding: 20px 10px;
  }
  footer .networks {
    gap: 5px;
  }
}