@import url('https://fonts.googleapis.com/css2?family=Inter:wght@200;400;600;700&display=swap');

* {
    margin: 0;
    padding: 0%;
}

body {
    width: 100%;
    height: 950px;
    display: flex;
    justify-content: center;
    background-color: black;
    color: white;
    font-family: 'Inter', sans-serif, Arial, Helvetica;
    margin: auto;
    font-size: 16px;
    overflow-x: hidden;
}

h1, p { text-align: center; }

h1 { 
    font-size: 3rem; /* Default font size for large screens */
    font-weight: 600;
}

/* For medium screens (e.g., tablets) */
@media (min-width: 768px) {
    h1 {
        font-size: 5rem;
    }
}


p { 
    width: 70%;
    font-size: 1.3rem;
    font-weight: 200;
}

header {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: rgba(255,255,255,.8);
}

.logo {
    width: 60px;
}

img {
    position: relative;
    width: 100%;
}

main {
    max-width: 1024px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 80px;
    gap: 32px;
}


form {
    position: relative;
    display: flex;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 50px;
    padding: 2px 2px;
  }
  
  form:focus-within {
    border: 1px solid rgba(255,255,255,.25);
  }
  
  input {
    background-color: transparent;
    border: 0;
    border-radius: 50px;
    padding: 12px 26px;
    color: #FFF;
    text-align: left;
    width: 250px;
    font-size: 16px;
  }
  
  input::placeholder {
    color: gray;
  }
  
  input:focus {
    outline: 0;
  }
  
  button {
    position: relative;
    height: fit-content;
    overflow: hidden;
    font-size: 16px;
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,.12);
    background: #111;
    color: #999;
    padding: 12px 24px;
    cursor: pointer;
  }
  
  button:hover {
    border: 1px solid rgba(255,255,255,.22);
    color: #FFF;
  }
  
  button:before {
    position: absolute;
    display: block;
    content: "";
    width: 80%;
    height: 40px;
    background-color: #888;
    top: 94%;
    left: -15%;
    filter: blur(15px);
    transition: all .3s;
    mix-blend-mode: screen;
    border-radius: 50px;
  }
  
  button:after {
    position: absolute;
    display: block;
    content: "";
    width: 80%;
    height: 50px;
    background-color: #888;
    top: 94%;
    right: -15%;
    filter: blur(15px);
    transition: all .3s;
    mix-blend-mode: screen;
    border-radius: 50px;
  }
  
  button:hover:after {
    right: 0;
    top: 112%;
    filter: blur(15px);
  }
  
  button:hover:before {
    left: 0;
    top: 112%;
    filter: blur(15px);
  }

  .subscribe-action {
    font-size: 1rem;
    background: #00FFD9;
    background: -webkit-linear-gradient(to left, #00FFD9 36%, #FF8000 100%);
    background: -moz-linear-gradient(to left, #00FFD9 36%, #FF8000 100%);
    background: linear-gradient(to left, #00FFD9 36%, #FF8000 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  #box {
    width: 900px;
    margin-top: 350px;
    position: fixed;
    transform-style: preserve-3d; /* Allows for 3D transformations */
    perspective: 800px;
    transform: perspective(1000px);
}

#particles-js {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1; /* Ensures particles are in the background */
}

/* Cool bg */

@keyframes jumbo {
    from {
        background-position: 50% 50%, 50% 50%;
    }
    to {
        background-position: 350% 50%, 350% 50%;
    }
}