* {
  margin: 0px;
  padding: 0px;
}
body {
  background-color: #eee;
}
.blocks-link {
  position: absolute;
  bottom: 12px;
  left: 12px;
}
.main {
  margin: 12px 0;
  padding: 12px;
  display: flex;
  align-items: center;
  flex-direction: column;
}
.main a {
  align-self: flex-start;
  text-decoration: none;
}
.avatar {
  display: flex;
}
.card {
  padding: 12px 20px !important;
}
.card p {
  font-size: 1.2rem;
}
.selectable {
  user-select: auto;
  -webkit-user-select: auto;
  -moz-user-select: auto;
}

@media screen and (max-width: 576px) {
  .main .center {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

.footer-social-links {
  margin-top: 25px;
  font-size: 14px;
}
.footer-social-links a {
  width: 26px;
  height: 26px;
  line-height: 25px !important;
  position: relative;
  margin: 0 9px;
  text-align: center;
  display: inline-block;
  color: #111;

  -webkit-transition: all 0.27s cubic-bezier(0.3, 0.1, 0.58, 1);
  -moz-transition: all 0.27s cubic-bezier(0.3, 0.1, 0.58, 1);
  -o-transition: all 0.27s cubic-bezier(0.3, 0.1, 0.58, 1);
  -ms-transition: all 0.27s cubic-bezier(0.3, 0.1, 0.58, 1);
  transition: all 0.27s cubic-bezier(0.3, 0.1, 0.58, 1);
}
.footer-social-links a i,
.footer-social-links a span {
  position: relative;
  top: 6px;
  left: 1px;
}
.footer-social-links a:before {
  content: "";
  display: inline-block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border: 1px solid #111;

  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;

  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);

  -webkit-transition: all 0.27s cubic-bezier(0.3, 0.1, 0.58, 1);
  -moz-transition: all 0.27s cubic-bezier(0.3, 0.1, 0.58, 1);
  -o-transition: all 0.27s cubic-bezier(0.3, 0.1, 0.58, 1);
  -ms-transition: all 0.27s cubic-bezier(0.3, 0.1, 0.58, 1);
  transition: all 0.27s cubic-bezier(0.3, 0.1, 0.58, 1);
}
.footer-social-links a:hover {
  color: #fff;
}
.footer-social-links a:hover:before {
  background: #111;
}
