@font-face {
  font-family: FontAweBrands;
  src: url("../assets/fonts/fa-brands-400.woff2");
}

body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: url(../assets/backgrounds/holographic-background.jpg);
  background-size: cover;
  position: relative;
}

a {
  text-decoration: none;
}

main {
  width: 50%;
  height: 85%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
  background: rgba(0, 0, 0, 0.74);
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(9.1px);
  -webkit-backdrop-filter: blur(9.1px);
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 20px;
}

.logo-image {
  height: 200px;
}

.social-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}

.social-icon-button {
  font-family: "FontAweBrands";
  font-size: 30px;
  color: white;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.social-icon-button:hover {
  background: linear-gradient(
    to right,
    rgba(239, 117, 244, 1) 0%,
    rgba(118, 106, 255, 1) 17%,
    rgba(57, 253, 225, 1) 36%,
    rgba(236, 251, 210, 1) 51%,
    rgba(187, 158, 249, 1) 63%,
    rgba(57, 253, 225, 1) 77%,
    rgba(118, 106, 255, 1) 89%,
    rgba(239, 117, 244, 1) 100%
  );
  background-clip: text;
  color: transparent;
}

.link-tree {
  width: 80%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}

.link-tree-button {
  font-family: "Montserrat", serif;
  font-weight: 600;
  font-size: 17px;
  line-height: 16px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: black;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  background-color: white;
  border-width: 4px;
  border-style: solid;
  border-image: linear-gradient(
      to right,
      rgba(239, 117, 244, 1) 0%,
      rgba(118, 106, 255, 1) 17%,
      rgba(57, 253, 225, 1) 36%,
      rgba(236, 251, 210, 1) 51%,
      rgba(187, 158, 249, 1) 63%,
      rgba(57, 253, 225, 1) 77%,
      rgba(118, 106, 255, 1) 89%,
      rgba(239, 117, 244, 1) 100%
    )
    1;
}

.button-image {
  width: 40%;
}

.link-tree-icon {
  height: 40px;
  margin-left: 30%;
  margin-top: 5px;
}

.button-content {
  display: flex;
  align-items: center;
}

.footer-credits {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 5px 0;
  text-align: center;
  background-color: #080808;
  font-family: "Montserrat", serif;
  font-weight: 500;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #b5a7b8;
}

.footer-credits a {
  color: white;
}

@media (max-width: 1500px) {
  main {
    width: 70%;
  }
}

@media (max-width: 1000px) {
  .link-tree-icon {
    height: 30px;
    margin-left: 20%;
  }
  main {
    width: 80%;
  }
}

@media (max-width: 600px) {
  .logo-image {
    height: 150px;
  }
  .link-tree-icon {
    height: 25px;
    margin-left: 15%;
  }
  .link-tree {
    width: 85%;
  }
  .link-tree-button {
    font-size: 15px;
  }
  .social-icon-button {
    font-size: 25px;
  }
  .button-image {
    width: 30%;
  }
}

@media (max-width: 500px) {
  main {
    width: 90%;
  }
  .button-image {
    width: 35%;
  }
  .link-tree-button {
    font-size: 11px;
  }
  .social-icon-button {
    font-size: 20px;
  }
}
