* {
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
}
body {
    font-family: Poppins, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #67726E;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 0px;
}
header {
    margin-bottom: 20px;
    padding-top: 20px;
}
#logo {
    width: 250px;
    height: auto;
    opacity: 0;
    animation: fadeIn 0.3s ease-in forwards;
	padding-top: 0px;

}
nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    max-width: 80%;
}
.nav-icon, #asset1, #asset2, #asset3, #asset4, #asset5, #asset6, #asset7 {
    height: auto;
    transition: all 0.3s ease;
    opacity: 0;
    animation: fadeIn 0.3s ease-in forwards;
}
#home-icon {
    width: 20px;
    padding-top: 0px;
	padding-bottom: 0px;

}
/* Individual asset sizes */
#asset1 { width: 160px; }
#asset2 { width: 160px; }
#asset3 { width: 160px; }
#asset4 { width: 160px; }
#asset5 { width: 160px; }
#asset6 { width: 160px; }
#asset7 { width: 160px; }

.text-button-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    padding-top: 15px;
}
.text-button {
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.1s ease;
    opacity: 0;
    animation: fadeIn .5s ease-in forwards;
}
.text-button:hover {
    color: #4CAF50;
    transform: scale(1.1);
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

