body {
  margin: 0;
  width: 100%;
  height: 100%;
}
.container {
  position: absolute;
  left: 20px;
  top: 20px;
  bottom: 20px;
  right: 20px;
  background: #f6f6f6;
  border: 0;
  -webkit-box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2);
  -webkit-border-radius: 20px 20px 20px 20px;
  -moz-border-radius: 20px 20px 20px 20px;
  border-radius: 20px 20px 20px 20px;
}
.avater {
  position: absolute;
  top: 15%;
  width: 100%;
  height: 25%;
}
.avatar-image {
  height: 100%;
  display: block;
  margin: auto;
  transition: all 2s;
  border-radius: 50% 50% 50% 50%;
}
.avatar-image:hover .extra,
.avatar-image:focus .extra {
  transform: rotate(360deg);
}
.icons {
  display: inline-block;
  direction: ltr;
  position: absolute;
  top: 60%;
  width: 100%;
}
.icons-images-list {
  display: flex;
  justify-content: center;
}
.icons-image-container {
  display: flex;
  flex-basis: 100%;
  justify-content: center;
}
.icons-image {
  height: 40px;
}
@media only screen and (max-width: 768px) {
  .icons-image {
    height: 25px;
  }
}
.copyright {
  position: absolute;
  top: 90%;
  width: 100%;
  height: 10%;
  color: #959595;
  font-size: 10pt;
  text-align: center;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}
