@import url("https://fonts.googleapis.com/css2?family=Cal+Sans&family=Figtree:ital,wght@0,300..900;1,300..900&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");

html,
body {
  height: 100%;
  width: 100%;
  overflow: hidden;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

.brand-font {
  font-family: "Cal Sans", sans-serif;
}

.content {
  height: 100vh;
  width: 100%;
  background-image: linear-gradient(
      137deg,
      rgba(169, 40, 212, 0.67) 0%,
      rgba(49, 192, 200, 0.8) 50%,
      rgba(171, 117, 191, 0.8) 100%
    ),
    url("/assets/image/bloomify.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
}

.bg-media {
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

.bloomify-logo {
  height: 170px !important;
}

.text {
  color: #fff;
  font-size: 48px;
  font-weight: 400 !important;
}

.line {
  height: 20vh;
  width: 8px;
  border-radius: 5px;
  background-color: #fff;
}

.footer {
  position: absolute;
  bottom: 20px;
  right: 40px;
  width: auto;
}

.footer .text-footer {
  color: #fff;
  cursor: pointer;
  font-size: 16px;
  transition: color 0.3s ease;
}

.footer .text-footer:hover {
  color: rgba(49, 192, 200, 1);
}

.row {
  --bs-gutter-x: 0 !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

@media (max-width: 768px) {
  .text {
    font-size: 30px;
  }

  .bloomify-logo {
    height: 100px !important;
  }

  .footer {
    width: 100%;
    text-align: center;
    bottom: 65px;
    right: 0;
  }

  .footer .d-flex {
    flex-direction: column !important;
    align-items: center !important;
    gap: 5px;
  }
}
