/* Reset some basic styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  height: 100%;
  overflow: hidden; /* Prevents scrolling */
  /*font-family: Arial, sans-serif;*/
  font-family: 'Poppins', sans-serif; /* Apply Poppins font */
}

#particles-js {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #001f3f, #0074D9); /* Navy blue gradient */
  z-index: -1;
}

.content {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  z-index: 1;
}

.link-container {
  display: flex;
  gap: 500px; /* Space between the links */
}

.custom-link {
  padding: 15px 30px;
  font-size: 50px;
  text-decoration: none;
  border-radius: 8px;
  background-color: #ffffff;
  color: #001f3f;
  transition: background-color 0.3s ease, color 0.3s ease;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.custom-link:hover {
  background-color: #001f3f;
  color: white;
}

/* Center the image horizontally */
.image-section {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 10% 0% -10% 0%;  /* Adjust spacing as needed */
}


/* Media Query for Small Screens (Mobile) */
@media (max-width: 768px) {
  .link-container {
    flex-direction: column; /* Stack links vertically */
    gap: 100px; /* Reduce the gap between links */
  }

  .custom-link {
    font-size: 25px;  /* Adjust font size for smaller screens */
    padding: 12px 24px; /* Adjust padding for better fit on small screens */
  }

  .content {
    padding: 20px; /* Add some padding on mobile to make things fit better */
  }
}

/* Media Query for Small Screens (Mobile) */
@media (max-width: 768px) {
  .logo {
    width: 120px; /* Make logos smaller on mobile devices */
    height: 120px;
      
  }

  .logo-container {
    gap: 20px; /* Reduce the gap between logos on mobile */
  }

  .content {
    padding: 20px; /* Add padding for better layout on mobile */
  }
  
  .image-section img {
    width: 100%; /* Make the image take full width of its container */
    max-width: 100%; /* Prevent it from getting larger than its container */
    height: auto; /* Maintain aspect ratio */
  }
  
  .image-section {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 10% 0% -20% 0%;  /* Adjust spacing as needed */
}
}