.link {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  margin: 20px auto;
  background-color: #fff;
  border-radius: 12px;
  height: auto;
  padding: 8px;
  padding-left: 42px;
  justify-content: space-between;
}

.fixedContainer {
  width: 100%;

}

.buttonsContainer {
  display: flex;
}

.flex-item {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
}

.text {
  font-family: 'Roboto Flex';
  align-content: center;
  text-align: center;
  font-size: 24px;
  font-weight: 400;
}

.button {
  color: #fff;
  display: inline-flex;
  height: 32px;
  padding: 7px 16px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  cursor: pointer;
  border-radius: 100px;
  background: #E83571;
  border: none;
  font-size: 17px;
  line-height: 17px;
}

.close-button {
  position: absolute;
  left: 8px;
  top: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  border-radius: 8px;
  width: 24px;
  height: 24px;
  font-weight: 700;
  color: #000;
  background-image: url('./images/close.png');
  background-size: cover;
  background-repeat: no-repeat;
}

.buttons-container {
  display: flex;
  gap: 8px;
}

.googleBtn {
    width: 144px;
    height: 48px;
  }

.appleBtn {
    width: 144px;
    height: 48px;
}

.image {
  display: block;
  -webkit-user-select: none;
  max-width: 100%;
  margin: auto;
  background-color: hsl(0, 0%, 90%);
  transition: background-color 300ms;
  object-fit: contain;
}

@media screen and (max-width: 750px) {
  .link {
    width: 80vw;
  }

  .fixedContainer {
    justify-content: space-between;
    height: fit-content;
  }

  .buttonsContainer {
    flex-direction: column;
    flex: 1;
  }

  .googleBtn {
    width: 70px;
    height: 30px;
  }

  .appleBtn {
    width: 70px;
    height: 30px;
  }

  .text {
    width: 40%;
    font-size: 14px;
  }
}

@media screen and (max-width: 375px) {
  .button {
    font-size: 12px;
  }
}