* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

img {
  max-width: 100%;
}

body {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 100vh;
  font-size: 1.6rem;
  font-family: "Manrope", sans-serif;
  color: hsl(217, 19%, 35%);
  padding: 1rem;
  overflow: hidden;
}

.container {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 2rem;
  overflow: hidden;
  box-shadow: 4px 4px 11px rgba(0, 0, 0, 0.5);
  max-width: 50rem;
}
.container__info {
  padding: 0 3.2rem;
}
.container__info-title {
  margin: 4rem 0 2rem 0;
  font-size: 1.6rem;
  line-height: 24px;
}
.container__info-description {
  font-size: 1.3rem;
  font-weight: 400;
  color: hsl(214, 17%, 51%);
  margin-bottom: 2rem;
}
.container .avatar {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
}
.container .avatar img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}
.container .avatar__name {
  display: flex;
  flex-direction: column;
  margin-right: 7rem;
  font-size: 1.3rem;
}
.container .avatar__name span:first-child {
  font-weight: bold;
}
.container .avatar__name span:nth-child(2) {
  color: hsl(212, 23%, 69%);
}
.container .avatar .icon {
  background-color: hsl(210, 46%, 95%);
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}
.container .share {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: hsl(217, 19%, 35%);
  display: flex;
  justify-content: space-around;
  align-items: center;
  height: 7rem;
  padding: 0 1rem;
  visibility: hidden;
}
.container .share__name {
  color: hsl(212, 23%, 69%);
  text-transform: uppercase;
  letter-spacing: 5px;
}
.container .share__icons a {
  padding-right: 1.5rem;
}
.container .share .icon-show {
  background-color: hsl(214, 17%, 51%);
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}
.container .share .icon-show svg path {
  fill: hsl(210, 46%, 95%);
}
.container .active {
  visibility: visible;
}

@media (min-width: 40rem) {
  .container {
    display: grid;
    grid-template-columns: 1fr minmax(400px, 1fr);
    max-width: 70rem;
  }
  .container__img {
    height: 100%;
  }
  .container__img img {
    height: 100%;
  }
  .container__info-title {
    font-size: 2rem;
    margin-top: 3rem;
  }
  .container__info-description {
    line-height: 2rem;
  }
  .container .avatar {
    margin-bottom: 3rem;
  }
  .container .share {
    bottom: 30%;
    right: 0;
    left: 55%;
    width: 45%;
    border-radius: 8px;
  }
}/*# sourceMappingURL=main.css.map */