

section {
    margin: auto;
    max-width: 315px;
  }
.wrapper {
    width: 389px;
    margin: auto;
    border-radius: 49px;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    background-color: #FFFBFA
}

header {
    height: 10px
}

.profile {
  padding-top: 10px;
  padding-bottom: 28px;
  position: relative;
}

.profile__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile__image-box {
  z-index: 1;
  width: 315px;
  height: 315px;
  overflow: hidden;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  border-radius: 107px;
}

.profile__status-box {
  justify-content: center;
  align-items: center;
  font-size: 24px;
  display: flex;
  z-index: 2;
  right: 0;
  position: absolute;
  background: linear-gradient(180deg, #EDBFA8 0%, #F7E1C1 100%);
  border-radius: 17px;
  width: 54px;
  height: 54px;
}

.profile__bio {
  position: relative;
  z-index: 2;
  justify-content: center;
  align-items: center;
  display: flex;
  flex-direction: column;
  font-family: 'Ubuntu', sans-serif;
  color: #000;
  margin: auto;
  margin-top: -8px;
  width: 300px;
  max-width: 300px;
  min-height: 100px;
  background: linear-gradient(119.73deg, #ECBEA7 28.68%, #F6E0C0 74.75%);
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  border-radius: 23px;
}

.profile__name {
  margin: 0;
  color: #662735;
  font-weight: bold;
  font-size: 26px;
}

.profile__subtitle {
  margin: 0;
  color: #662735;
  font-weight: normal;
  font-size: 18px;
}

.contacts {
  padding: 12px 15px;
}

.contacts__wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: 13px;
  grid-row-gap: 13px;
}

.contacts__item {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 34px;
  border-radius: 9px;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  font-size: 18px;
  color: white;
  text-decoration: none;
  font-family: 'Ubuntu', sans-serif;
}

.contacts__item--large {
  grid-column: span 2
}

.contacts__text--small {
  display: none
}

.contacts__text--large {
  margin-left: 15px
}

.contacts__telegram {
  background-color: #229FDA;
}

.contacts__whatsapp {
  background-color: #1BD741;
}

.contacts__vk {
  background-color: #0077FF;
}

.contacts__instagram {
  background-color: #EA496A;
}

.contacts__mail {
  background-color: #919191;
}

footer {
    padding: 10px 0;
    margin-top: 10px;
    justify-content: center;
    align-items: center;
    display: flex;
    font-family: 'Ubuntu', sans-serif;
    font-style: normal;
    font-weight: 300;
}

.footer__href {
  align-items: center;
  display: flex;
  color: #000000;
  text-decoration: none;
}

.footer__text {
  margin-top: 3px;
  margin-right: 6px;
}

@media (max-width: 450px) {
    body {
        background-color: #FFFBFA;
    }
    section {
        max-width: 90%;
    }
    .wrapper {
        margin: 0;
        width: 100%;
        border-radius: 0;
        box-shadow: none;
        top: 0;
        transform: none;
    }
    .profile {
        margin: auto
    }

    .profile__image-box {
        width: 85%;
        margin: auto;
    }  

    .profile__bio {
      width: 85%
    }

    .profile__status-box {
      right: 20px
    }
}

@media (max-width: 350px) {
    .profile__name {
      font-size: 20px
    }
    .profile__subtitle {
      font-size: 15px
    }
  }