@font-face {
  font-family: 'Bebas Neue';
  src: url('path/to/your/bebasneue.woff2') format('woff2'),
       url('path/to/your/bebasneue.woff') format('woff');
  font-weight: normal; /* Or specify the weight if you have different files */
  font-style: normal;
}

* {
    margin: 0;
    padding: 0;
}

body {
    background: url('images/backgroundimage.jpg') fixed center center no-repeat;

    height: 100vh;
    font-family: 'Bebas Neue', sans-serif;
    font-weight: 400;
    display: flex;
    color: white;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    place-items: center;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.draggable {
    z-index: 9999;
    user-select: none;
}

.effect {
    position: absolute;
    z-index: 0;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    backdrop-filter: blur(1px);
    filter: url(#glass-distortion);
    overflow: hidden;
}

.tint {
    z-index: 1;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background: #ffffff04;
}

.shine {
    position: absolute;
    border-radius: 5em;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    z-index: 2;
    overflow: hidden;
    box-shadow:
        inset 2px 2px 1px 0 #ffffff80,
        inset -1px -1px 1px 1px #ffffff80;
}

.logo-glass {
    padding: 40px;
    border-radius: 5em;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    transition: transform 0.3s, background-color 0.3s;
    margin-bottom: 2em;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5), inset 0 1px 2px rgba(255, 255, 255, 0.15);
}

.logo-glass2 {
    position: relative;
    top: 35vh;
    padding: 20px;
    border-radius: 5em;
    background: rgba(255, 255, 255, 0.05);
    display:flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
    overflow: hidden;
    transition: transform 0.3s, background-color 0.3s;
    justify-content: center;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5), inset 0 1px 2px rgba(255, 255, 255, 0.15);
}

.logo-glass::before {
    content: '';
    position: absolute;
    top: -30%;
    left: -30%;
    width: 160%;
    height: 160%;
    background: linear-gradient(
        120deg,
        rgba(255, 255, 255, 0.15) 0%,
        rgba(255, 255, 255, 0.05) 60%,
        rgba(255, 255, 255, 0.0) 100%
    );
    transform: rotate(25deg);
    pointer-events: none;
}

.logo-glass:hover {
    transform: scale(1.03);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5), inset 0 1px 2px rgba(255, 255, 255, 0.15);
}

.logo-glass2:hover {
    transform: scale(1.03);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5), inset 0 1px 2px rgba(255, 255, 255, 0.15);
}

.logo {
    
    width: 500px;
    height: auto;
    pointer-events: none;
    user-select: none;
    z-index: 3;
}

h1 {
    
    font-size: 70px;
    text-align: center;
    text-anchor: center;
}

p {
    z-index: 3;
    font-size: 3em;
}

.social-links {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 30px;
    top: 35vh;
    position: relative;
    padding: 15px;
    border-radius: 3em;
    background: rgba(255, 255, 255, 0.05);
    align-items: center;
    z-index: 1;
    overflow: hidden;
    transition: transform 0.3s, background-color 0.3s;
    margin-bottom: 2em;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5), inset 0 1px 2px rgba(255, 255, 255, 0.15);
}

.social-links p {
    font-size: 30px;
}

.social-icon {
    z-index: 3;
    width: 70px;
    height: 70px;
    border-radius: 1.5em;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s, background-color 0.3s;
    text-decoration: none;
}

.social-icon svg {
    
    width: 100px;
    height: 100px;
}

.social-icon:hover {
    transform: scale(1.1);
    background-color: rgba(255, 255, 255, 0.3);
}

.glass {
    filter: url(#glass-distortion);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.08);
    outline: none;
    user-select: none;
    backdrop-filter: url(#liquid-glass-filter);
    transform: none;
    border-radius: 9999px;
    z-index: 1; /* To ensure it's on top */
}

@media (max-width: 768px) {
  body {
    background-size: cover;
    background-position: center;
    flex-direction: column;
    padding: 10px;
  }

  .logo {
    width: 250px; /* Smaller logo on phones */
  }

  .logo-glass {
    padding: 20px;
    border-radius: 2em;
  }

  .logo-glass2 {
    top: 20vh;
    padding: 15px;
    border-radius: 2em;
  }

  .logo-glass2 p {
    font-size: 1.5em;
  }

  .social-links {
    flex-wrap: wrap;
    gap: 15px;
    top: 20vh;
    padding: 10px;
    border-radius: 2em;
  }

  .social-icon {
    width: 50px;
    height: 50px;
  }

  .social-icon svg {
    width: 60px;
    height: 60px;
  }
}

@media (max-width: 480px) {
  .logo {
    width: 200px;
  }

  .logo-glass2 p {
    font-size: 1.2em;
  }

  .social-icon {
    width: 45px;
    height: 45px;
  }

  .social-icon svg {
    width: 50px;
    height: 50px;
  }
}

.instagram:hover { background-color: #E1306C; }
.facebook:hover { background-color: #1877F2; }
.tiktok:hover { background-color: #25F4EE; }