@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap");
:root {
  --delvatorLogoSize: 192.8px;
}

.linktree-container {
  min-height: calc(100vh - 100px);
  background-color: #22333a;
  padding: 100px 1rem;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
}
@media (max-width: 700px) {
  .linktree-container {
    padding: 50px 20px;
  }
}

.linktree-wrapper {
  width: 100%;
  max-width: 580px;
}
@media (max-width: 700px) {
  .linktree-wrapper {
    max-width: 100%;
  }
}

.linktree-content {
  width: 100%;
  margin: 0 auto;
  text-align: center;
}
@media (max-width: 700px) {
  .linktree-content {
    width: 100%;
    padding: 0;
  }
}
.linktree-content h2 {
  color: #FFFFFF;
  margin-bottom: 1rem;
}
.linktree-content p {
  color: #FFFFFF;
  margin-bottom: 2rem;
}

.linktree-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 2rem;
  width: 100%;
}
@media (max-width: 700px) {
  .linktree-buttons {
    padding: 0 20px;
  }
}

.linktree-button {
  width: 100%;
  height: 50px;
  background-color: #de061c;
  color: #FFFFFF;
  text-decoration: none;
  text-transform: uppercase;
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
  font-size: 14px;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: skew(-45deg);
  overflow: visible;
}
.linktree-button span {
  display: inline-block;
  transform: skew(45deg);
  white-space: nowrap;
}

.social-media-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 50px;
}
.social-media-icons .social-media-link {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #de061c;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  transition: all 0.4s ease;
}
.social-media-icons .social-media-link:hover {
  background-color: #de061c;
}
.social-media-icons .social-media-icon {
  width: 100%;
  height: auto;
  max-width: 24px;
  max-height: 24px;
}

@media (max-width: 768px) {
  .social-media-icons {
    gap: 0.75rem;
  }
  .social-media-icons .social-media-link {
    width: 50px;
    height: 50px;
  }
  .social-media-icons .social-media-icon {
    max-width: 20px;
    max-height: 20px;
  }
}
@media (max-width: 480px) {
  .social-media-icons {
    gap: 0.9rem;
  }
  .social-media-icons .social-media-link {
    width: 45px;
    height: 45px;
  }
  .social-media-icons .social-media-icon {
    max-width: 18px;
    max-height: 18px;
  }
}
.site-header {
  width: 100%;
  height: 100px;
  background-color: #fff;
  display: flex;
  align-items: center;
  overflow-x: hidden;
}

.logo-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 2rem;
  margin: 0 auto;
  position: relative;
  max-width: 600px;
}

.logo-holder {
  display: flex;
  align-items: center;
}
.logo-holder img {
  height: 55px;
  width: auto;
  object-fit: contain;
}

.bell-logo {
  position: relative;
  margin-right: 1rem;
}
.bell-logo::after {
  content: "";
  position: absolute;
  right: -25px;
  top: 50%;
  transform: translateY(-50%);
  height: 50px;
  width: 1px;
  background-color: #22333a;
}

.delvator-holder {
  position: relative;
  display: flex;
  align-items: center;
}
.delvator-holder .delvator-logo {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
}
.delvator-holder::after {
  content: "";
  background-color: #000;
  position: absolute;
  height: 55px;
  top: 50%;
  transform: translateY(-49%);
  z-index: 1;
  transform-origin: 0 50%;
  left: calc(100% - 1.5rem);
  width: 400%;
  clip-path: inset(0);
}

@media (max-width: 768px) {
  .logo-wrapper {
    gap: 1rem;
  }
  .logo-holder img {
    height: 35px;
  }
  .delvator-holder::after {
    height: 35px;
  }
}
@media (max-width: 420px) {
  .logo-wrapper {
    margin: 0 20px;
  }
}
.linktree-header {
  text-align: center;
  margin-bottom: 40px;
  width: 100%;
}

.linktree-title {
  color: #FFFFFF;
  font-family: "Montserrat", sans-serif;
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 10px;
}
@media (max-width: 700px) {
  .linktree-title {
    font-size: 36px;
  }
}

.linktree-ingress {
  color: #FFFFFF;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  line-height: 1.5;
  margin: 0 auto;
}
.linktree-ingress p {
  margin: 0;
}
@media (max-width: 650px) {
  .linktree-ingress {
    font-size: 16px;
  }
}

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

body {
  height: 100vh;
}

footer {
  display: none;
}

/*# sourceMappingURL=style.css.map */
