@import url("https://fonts.googleapis.com/css2?family=Playwrite+AU+SA:wght@100..400&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  list-style: none;
  font-family: "Poppins", serif;
  color: #333;
}

body {
  background-color: #fff6f6;
}

.taplink {
  padding: 50px 0;
}
.taplink .container {
  width: 100%;
  max-width: 400px;
  padding: 0 20px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.taplink__text-wr {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 40px;
}
.taplink__text-wr .taplink__img {
  width: 96px;
  height: 96px;
  -o-object-fit: cover;
     object-fit: cover;
  display: flex;
  border-radius: 50%;
  margin-bottom: 20px;
}
.taplink__text-wr .taplink__title {
  font-family: "Playwrite AU SA", serif;
  font-weight: 600;
  font-size: 31px;
  line-height: 1.5;
  margin-bottom: 10px;
}
@media (max-width: 360px) {
  .taplink__text-wr .taplink__title {
    font-size: 29px;
  }
}
.taplink__text-wr .taplink__desc {
  font-weight: 500;
  font-size: 19px;
  line-height: 1.5;
  margin-bottom: 20px;
  text-transform: uppercase;
}
@media (max-width: 360px) {
  .taplink__text-wr .taplink__desc {
    font-size: 18px;
  }
}
.taplink__text-wr .span-wr {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 5px;
}
.taplink__text-wr .span-wr span {
  width: 100%;
  height: 2px;
  display: block;
  border-radius: 100px;
  background-color: #333;
}
.taplink__link-wr {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.taplink__link-wr .link {
  width: 100%;
  height: 100%;
  padding: 10px 25px;
  border-radius: 15px;
  min-height: 73px;
  background-color: #983944;
  border: 2px #983944 solid;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: all 0.15s ease;
}
@media (max-width: 360px) {
  .taplink__link-wr .link {
    padding: 10px 18px;
  }
}
.taplink__link-wr .link__title {
  font-weight: 400;
  font-size: 20px;
  line-height: 1.5;
  color: #fff;
}
@media (max-width: 390px) {
  .taplink__link-wr .link__title {
    font-size: 17px;
  }
}
.taplink__link-wr .link__desc {
  font-weight: 300;
  font-size: 14px;
  line-height: 1.2;
  color: #fff;
}
.taplink__link-wr .link:hover {
  background-color: #fff;
}
.taplink__link-wr .link:hover h4,
.taplink__link-wr .link:hover p,
.taplink__link-wr .link:hover svg path {
  fill: #983944;
  color: #983944;
}
.taplink__link-wr .link:active {
  opacity: 0.8;
}/*# sourceMappingURL=main.css.map */