@import url("https://fonts.googleapis.com/css?family=ABeeZee");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: ABeeZee, sans-serif;
}

html {
  width: 100%;
  height: 100%;
}

body {
  background: #ccc;
  color: #455A64;
  width: 100%;
  height: 100%;
}
@media (min-width: 576px) {
  body {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

.profile {
  border-radius: 10px;
  background: #fff;
  width: 576px;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
}
@media (max-width: 576px) {
  .profile {
    width: 100%;
    border-radius: 0px;
  }
}
.profile__header {
  display: flex;
  position: relative;
  justify-content: center;
}
.profile__background {
  width: 100%;
  height: 200px;
  background-size: cover;
  background-position: bottom;
  border-radius: 10px 10px 0px 0px;
}
@media (max-width: 576px) {
  .profile__background {
    border-radius: 0px;
  }
}
.profile__picture {
  position: absolute;
  bottom: -80px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
}
.profile__content {
  padding-top: 90px;
  text-align: center;
}
.profile__bio {
  padding: 10px 20px;
}
.profile__name {
  color: #37474F;
  font-size: 28px;
  margin-bottom: 10px;
}
.profile__info {
  line-height: 1.5;
  font-size: 16px;
}
.profile__links {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  cursor: pointer;
}
.profile__link {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-basis: 180px;
  padding: 20px;
  text-decoration: none;
  color: inherit;
  font-size: 18px;
  transition: 0.2s;
}
.profile__link:hover {
  color: #2196F3;
}
.profile__link__icon {
  padding-right: 15px;
  color: #2196F3;
  font-size: 20px;
}
.profile__socials {
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 576px) {
  .profile__socials {
    flex-wrap: nowrap;
    flex-direction: column;
  }
}
.profile__socials > a {
  color: inherit;
  text-decoration: inherit;
}
.profile__socials__social {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  flex-basis: 50%;
  padding: 15px 20px;
  background: #ECEFF1;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  transition: 0.2s;
}
.profile__socials__social:hover {
  background: #CFD8DC;
}
@media (min-width: 576px) {
  .profile__socials__social--first {
    border-right: 1px solid #ddd;
  }
}
.profile__socials__social__handle {
  font-size: 20px;
  font-weight: bold;
  padding-bottom: 2px;
}
.profile__blog {
  flex-basis: 100%;
}
.profile__blog__button {
  display: block;
  text-decoration: none;
  padding: 20px;
  width: 100%;
  border-radius: 0px 0px 10px 10px;
  background: #66BB6A;
  color: #fff;
  font-size: 18px;
  border: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  transition: 0.2s;
}
.profile__blog__button:hover {
  background: #4CAF50;
}
@media (max-width: 576px) {
  .profile__blog__button {
    border-radius: 0px;
  }
}
.profile__blog__button--inactive {
  background-color: rgb(129, 129, 129);
}
.profile__blog__button--inactive:hover {
  background-color: rgb(109, 109, 109);
}

/*# sourceMappingURL=style.css.map */
