* {
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 20;
    background-color: #2E423A; /* Light gray background */
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

header {
    margin-bottom: 50px; /* Space between logo and assets */
}

#logo {
    width: 250px;
    height: auto;
}

nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px; /* Space between assets */
    max-width: 80%; /* Limit width to prevent overflow on small screens */
}

.nav-icon {
    height: auto;
    transition: all 0.3s ease;
}

.nav-icon:hover {
    filter: brightness(0) saturate(60%) invert(80%) sepia(50%) saturate(2000%) hue-rotate(110deg) brightness(80%) contrast(130%);
    transform: scale(1.1);
}

.nav-icon:active {
    opacity: 0.7;
}

/* Individual asset sizes */
#asset1 { width: 150px; }
#asset2 { width: 160px; }
#asset3 { width: 130px; }
#asset4 { width: 200px; }
#asset5 { width: 200px; }
#asset6 { width: 180px; }
#asset7 { width: 130px; }
