@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400..900&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: black;
  font-family: "Lato", sans-serif;
  overflow-x: hidden;
}

.video-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.blur-background {
  width: 80vw;
  max-width: 1370px;
  height: 85vh;
  max-height: 620px;
  background-color: rgba(255, 255, 255, 0.097);
  -webkit-backdrop-filter: blur(13px);
  backdrop-filter: blur(13px);
  border-radius: 30px;
  padding: 2rem;
  margin-top:-20px;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.05);
  overflow: auto;
}

.logo {
  width:220px;
}

.separator {
  width: 220px;
}

.branding {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.branding p{
    margin-bottom: 19px;
}
p {
  font-family: "Cinzel", serif;
  font-weight: 400;
  letter-spacing: 5px;
  color: aliceblue;
  font-size: 14px;
}

.all-icons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  width: 100%;
  max-width: 800px;
  text-align: center;
  height: 33vh;
  vertical-align: middle;
}

.icon-animate {
    position: relative;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle, rgb(87,96,8), rgb(67, 81, 9));
    border-radius: 50%;
    z-index: 999;
    overflow: hidden;
  }
  
a{
    text-decoration: none;
}
.icon {
  color: rgba(255, 255, 255, 0.85);
}

.merge {
    position: relative;
    display: flex;
    align-items: center;
    width: 23vw;
    max-width: 240px;
    height: 60px;
    background: radial-gradient(circle at top left, rgb(16,10,5) 0%, rgba(0, 255, 0, 0) 80%);
    border-radius: 40px;
    box-sizing: border-box;
  }

  
.merge p {
    margin: 0;
    padding-left: 12px;
    color: white;
    font-family: "Cinzel", serif;
    font-weight: 400;
    letter-spacing: 1px;
    font-size: medium;
  }


  @media (max-width: 768px) {
    .all-icons {
      grid-template-columns: repeat(3, 1fr);
      height: 400px;
      gap: 15px;
      padding: 10px;
      overflow-y: auto;
      justify-items: center; 
    }

    p{
        letter-spacing: 2px;
    }
    
    .blur-background {
      width: 90vw;
      height: 85vh;
      max-height: none;
      overflow-y: auto; 
    }
  
    .merge {
      min-height: 80px;
      width: 17vw;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      border-radius: 14px;
      padding: 10px;
      text-align: center;
      background: none;
    }
  
    .icon-animate {
      height: 40px;
      width: 40px;
      min-height: 40px;
      min-width: 40px;
      border-radius: 7px;
      position: relative;
      margin-bottom: 8px;
      left: auto;
      top: auto;
      transform: none;
      display: flex;
      justify-content: center;
      align-items: center;
    }
  
    .merge p {
      font-size: small;
      margin-top: 5px;
      text-align: center;
      width: 100%;
      padding-left: 0;
    }
  
    .branding {
      margin-bottom: 5px ;
    }
  
    .icon.fa-2x {
      font-size: 1.5em;
    }
  
    .fa-instagram {
      font-size: 1.7em;
    }
  }

@media (max-width: 480px) {
    .all-icons {
      grid-template-columns: repeat(2, 1fr);
      height: auto;
      max-height: 80vh;
      gap: 15px;
      padding: 10px;
      overflow-y: auto;
      justify-items: center; /* center grid items horizontally */
    }

    body {
      overflow: auto;
    }
    .branding p{
      margin-bottom: 5px;
    }
    .blur-background {
      width: 90vw;
      height: 85vh;
      max-height: none;
      overflow-y: auto;
      backdrop-filter: blur(13px);
      -webkit-backdrop-filter: blur(13px);
    }
  
    .merge {
      min-height: 80px;
      width: 27vw;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      border-radius: 14px;
      padding: 10px;
      text-align: center;
      background: none;
    }
  
    .icon-animate {
      height: 40px;
      width: 40px;
      min-height: 40px;
      min-width: 40px;
      border-radius: 7px;
      position: relative;
      margin-bottom: 8px;
      left: auto;
      top: auto;
      transform: none;
      display: flex;
      justify-content: center;
      align-items: center;
    }
  
    .merge p {
      font-size: small;
      margin-top: 5px;
      text-align: center;
      width: 100%;
      padding-left: 0;
    }
  
    .branding {
      margin-bottom: 5px ;
    }
  
    .icon.fa-2x {
      font-size: 1.5em;
    }
  
    .fa-instagram {
      font-size: 1.7em;
    }
  }
  