body, html {
    margin: 0;
    padding: 0;
    height: 100vh; /* Viewport height: makes sure the body takes full viewport height */
    background-image: url('background1.png'); /* Replace with your image path */
    background-position: center; /* Centers the image in the page */
    background-repeat: no-repeat; /* Prevents the image from repeating */
    background-size: cover; /* Ensures the image covers the entire page */
    background-attachment: fixed; /* Optional: keeps the image fixed during scroll */
    font-family: 'Inter', sans-serif;
  }

  .dapp-button {
    display: inline-block;
    padding: 10px 20px;
    margin-left: 20px; /* Adjust as needed */
    background-color: #bbdcff; /* Primary button color */
    color: rgb(0, 0, 0); /* Text color */
    text-align: center;
    text-decoration: none;
    border-radius: 10px;
    transition: background-color 0.3s ease;
}

.dapp-button:hover {
    background-color: #82bfff; /* Darker shade for hover effect */
    text-decoration: none; /* Optional: Removes underline on hover */
    color: white;
}


.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1em;
    background-color: #f7fafc; /* Lighter shade for the navbar */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.logo {
    height: 75px; /* Adjust as needed for your logo */
}

.nav-links a {
    color: #000000; /* Soft blue for text */
    text-decoration: none;
    padding: 0 1em;
    transition: color 0.3s ease-in-out;
}

.nav-links a:hover {
    color: #2cabbf; /* Highlight color on hover */
}

.launch-app {
    padding: 0.5em 1em;
    background-color: #007bff; /* Blue background for launch button */
    color: #fff;
    border-radius: 5px;
    text-transform: uppercase;
    font-weight: bold;
    transition: background-color 0.3s ease-in-out;
}

.launch-app:hover {
    background-color: #0056b3; /* Darker blue on hover */
}

.apps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1em;
    padding: 2em;
}

.app-box-link {
    text-decoration: none; /* Removes underline from links */
    color: #333; /* Text color for app titles and descriptions */
}

.app-box {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    overflow: hidden; /* Ensures the image fits within the border radius */
}

.app-box:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transform: translateY(-5px);
}

.app-image {
    width: 100%;
    height: auto; /* Maintain aspect ratio */
    display: block;
}

.app-info {
    padding: 1em;
}

.app-info h3 {
    margin: 0.5em 0;
    font-size: 1.2em;
}

.app-info p {
    font-size: 15px;
    color: #000000; /* Soft blue for descriptions */
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
    }

    .nav-links {
        margin-top: 1em;
    }
}

.apps-header {
    text-align: left; /* Align text to the left */
    padding-left: 20px; /* Add padding on the left side */
    margin-bottom: 20px; /* Space below the header */

  }
  
  .apps-header h1 {
    display: inline-block; /* Allows for padding and margins */
    margin: 0; /* Resets any default margins */
    color: #000000; /* White text color */
    font-size: 2em; /* Large font size for the header */
    border-radius: 5px; /* Rounded corners for the background */
    box-shadow: 0 5px 5px rgba(0, 0, 0, 0.2); /* Subtle shadow for depth */
    padding: 10px 20px; /* Add padding inside the header box */
  }