@import url('https://fonts.googleapis.com/css2?family=Libre+Bodoni:ital,wght@0,400..700;1,400..700&display=swap');


* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body {
    font-family: Arial, sans-serif;
    background-image: url('../textures/texture.svg');
}

.spacer {
    height: 15vh;
}

a {
    text-decoration: none;
    color: unset;
}

.linkcardbox {
    display: flex;
    justify-content: center;
    padding: 20px;
}

.content {
    width: 100%;
    max-width: 1300px;
}

.linkcardcontainer {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 10px;
    max-width: 1300px;
    width: 100%;
}
.linkcard {
    background: #ffffff18;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    padding: 20px;
    text-align: left;
    border-radius: 5px;
    transition: 0.1s ease-out;
    border: 1px solid #e0e0e0d9;
}



.description, .tinylinks {
    font-size: 14px;
    color: #5a5a5a;
}


.tinyappicon {
    height: 19px;
    margin-right: 7px;
    transition: 0.1s ease-out;
    border-radius: 2px;
}


.tdtop {
    vertical-align: top;
}

.linkcard:hover {
    cursor: pointer;
    background-color: #e5e5e55f;

    .tinyappicon {
        height: 22px;
        margin-right: 6px;
        margin-top: -1px;
        margin-left: -2px;
    }

}

.grayed {
    filter: opacity(0.5);
    filter: blur(2px);
    -webkit-filter: blur(2px);
}

.soon {
  position: relative; /* Ensure the parent container is positioned */
}

.soon::before {
  content: "COMING SOON";
  position: absolute;
  top: 30%; /* Adjust this value if necessary */
  left: 50%;
  transform: translateX(-50%) rotate(-10deg); /* Correct positioning and rotation */
  -webkit-transform: translateX(-50%) rotate(-10deg); /* WebKit prefix */
  font-size: 20px;
  font-weight: bold;
  color: rgb(0, 0, 0);
  white-space: nowrap; /* Prevent text from wrapping */
}



  .chip {
    background-color: #e9e9e9;
    color: #484848;
    border-radius: 100px;
    padding: 5px 10px 5px 10px;
    width: fit-content;
    user-select: none;
    -moz-user-select: none;
  }

  .pink {
    background-color: #f0ddf0;
    color: #860486;
  }

  .blue {
    background-color: #dde6f0;
    color: #042986;
  }

  .green {
    background-color: #ddf0e1;
    color: #04860b;
  }

  .dotted {
    text-decoration: underline dotted #5f5f5f;
    text-decoration-thickness: 1.3px; 
  }

  .logo {
    width: 50%;
    max-width: 100px;
    border-radius: 300px;
    margin-bottom: 20px;
  }

  .title {
    font-size: 20px;
    font-style: italic;
  }

  .glow {
    font-size: 70px;
    font-style: italic;
    font-weight: bold;
    font-family: "Libre Bodoni", serif;
    background: -webkit-linear-gradient(#000, #2d3d7c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

@keyframes buttonflyin {
    0% {
        font-size: 2px;
        padding: 2px;
        margin-top: 40px;
    }

    100% {
        margin-top: unset;
        font-size: unset;
        padding: 10px;
    }
    
}