* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-sizing: border-box;
}
html, body {
  height: 100%;
  background-color: #fff;
}

.container {
  width: 100%;
  height: 96vh;
  max-width: 800px;
  padding: 10px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
.container img {
  max-width: 100%;
  border-radius: 500px;
  margin-top: -40px;
}

footer {
  background-color: #ff724c;
  width: 100%;
  padding: 0;
  position: fixed;
  bottom: 0;
}

footer .center {
  width: 100%;
  max-width: 1200px;
  padding: 10px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

footer .center p {
  margin: 0;
  color: #fff;
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  font-size: 20px;
}
footer .center p:first-child {
  width: 250px;
}
footer .center p:last-child {
  width: 100px;
  text-align: right;
}
footer .center p a {
  color: #fff;
  text-decoration: none;
}

footer .social {
  width: calc(100% - 250px - 100px);
  display: flex;
  gap: 10px;
  justify-content: center;
}

footer .social a {
  background-repeat: no-repeat;
  background-size: 24px;
  background-position: center center;
  width: 48px;
  height: 48px;
  text-indent: -9000px;
  background-color: #ff7d5b;
  border-radius: 50%;
  margin-top: 0;
  border: 2px solid #fff;
  box-shadow: 0 0 0 2px #e36644;
  transition: background-size 0.5s ease,all 0.5s ease-in-out
}

footer .social a.instagram {
  background-image: url("../img/icon/instagram.png");
  background-size: 100%
}

footer .social a.facebook {
  background-image: url("../img/icon/facebook.png");
  background-color: #38529a
}

footer .social a.x {
  background-image: url("../img/icon/x.png");
  background-color: #000
}

footer .social a.linkedin {
  background-image: url("../img/icon/linkedin.png");
  background-color: #0a66c2
}

footer .social a.youtube {
  background-image: url("../img/icon/youtube.png");
  background-color: #ff0000
}

footer .social a.whatsapp {
  background-image: url("../img/icon/whatsapp.png");
  background-color: #15ac4d
}

@media (max-height: 1000px) {
  .container img {
    max-height: 90%;
  }
}

@media (max-width: 650px) {
  .container img {
    margin-top: -100px;
  }

  footer .center {
    display: block;
    justify-content: center;
  }
  footer .center p {
    width: 100% !important;
    text-align: center !important;
  }

  footer .social {
    width: 100%;
    margin: 5px 0;
  }
}