html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  color: white;
  font-family: 'JetBrains Mono', sans-serif;
  font-size: 16px;
  line-height: 1.5;
  margin: 0;
  padding: 0;
  position: relative;
  overflow: hidden; 
}

.background-gradient {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top right, #7a4891, #161229); 
  filter: brightness(80%); 
  z-index: -1; 
}

main {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  background-color: transparent; 
  padding: 25px;
  border-radius: 10px;
  padding-bottom: 50px; 
}

nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center; 
  gap: 25px; 
  padding: 20px; 
  max-width: 470px; 
  margin: 0 auto; 
}

div.icon-wrapper {
  width: 60px;
  height: 60px;
  padding: 25px;
  border-radius: 100px;
  margin: 5px;
  transition: transform 0.2s, background-color 0.3s;
  background: linear-gradient(to top left, #ac69ca, #1f1a38); 
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4); 
}

div.icon-wrapper:hover {
  transform: scale(1.1);
  background: linear-gradient(to bottom right, #ac69ca, #1f1a38); 
}

img.icon {
  width: 60px; 
  height: 60px;
}

img.custom-icon {
  width: 80px; 
  height: 80px;
}

img.logo {
  width: 250px;
  height: 250px;
  margin-bottom: 50px; 
  border-radius: 100%; 
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4); 
  clip-path: circle(100% at 50% 50%); 
}


@media (max-width: 600px) {
  main {
    padding: 20px;
  }

  nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 50px; 
  }

  div.icon-wrapper {
    width: 50px;
    height: 50px;
    padding: 15px;
  }
}
