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

header {
  width: 100%;
}

header .bi {
  position: absolute;
  top: 4%;
  left: 80%;
  display: block;
  border-radius: 50%;
  border: 1px solid black;
  padding: 10px;
  line-height: 50%;
}

header .bi:hover {
  background-color: transparent;
}

body {
  background-color: #8b5e47;
}

body a {
  text-decoration: none;
  /* color: #8d8d8d; */
  color: #b37151;
}

.wrapper .instagram-link {
  color: black;
}

.wrapper {
  position: absolute;
  width: 100%;
  left: 50%;
  top: 40%;
  transform: translate(-50%, -50%);

  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.title {
  margin-bottom: 10px;
}

.logo {
  width: 100px;
  margin-bottom: 20px;
  text-align: center;
  border-radius: 50%;
}

.main-title,
.subtitle {
  margin-bottom: 15px;
  color: #3c383d;
}

.main-title {
  font-weight: 600;
  font-size: 20px;
  font-family: "Verdana";
}

.box-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  color: #8d8d8d;
}

.box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: center;

  width: 55%;
  max-height: 82px;
  padding: 21px;
  margin-bottom: 10px;
  border-radius: 25px;
  border: 1px solid rgba(204, 204, 204, 0.719);
  background-color: #ffff;
  cursor: pointer;
  transition: 0.3s ease-in;

  -webkit-box-shadow: 0px 2px 5px 0px rgba(189, 189, 189, 0.58);
  -moz-box-shadow: 0px 2px 5px 0px rgba(189, 189, 189, 0.58);
  box-shadow: 0px 2px 5px 0px rgba(189, 189, 189, 0.58);
}

.box span {
  flex-grow: 1;
  text-align: center;
}

.box.no-image::before {
  content: "";
  width: 50px;
  margin-right: 15px;
}

.seller-image {
  width: 50px;
  height: 50px;
  margin-right: 15px;
  object-fit: cover;
  border-radius: 50%;
}

.bi {
  display: inline-block;
  cursor: pointer;
  border-radius: 50%;
  padding: 10px;
  transition: 0.3s;
  flex-shrink: 0;
}

.box:hover .bi {
  background-color: #dfdfdf;
}

.box:hover {
  -webkit-box-shadow: 0px 4px 5px 0px rgba(189, 189, 189, 0.58);
  -moz-box-shadow: 0px 4px 5px 0px rgba(189, 189, 189, 0.58);
  box-shadow: 0px 4px 5px 0px rgba(189, 189, 189, 0.58);
  transform: scale(1.02);
}

@media (max-width: 991px) {
  .box {
    width: 70%;
  }
}

@media (max-width: 750px) {
  .box {
    width: 80%;
  }
}

@media (max-width: 450px) {
  header .bi {
    top: 2%;
    left: 86%;
  }

  .subtitle {
    font-size: 14px;
  }

  .box {
    width: 90%;
  }

  .bi {
    display: inline-block;
  }

  .box:hover {
    transform: none;
  }
}

@media (max-width: 380px) {
  .box span {
    font-size: 14px;
  }
}
