/* General Styles for the index page */
body {
    font-family: Helvetica, sans-serif;
    background-color: #fff;
    margin: 0;
    padding: 0;
    color: #333;
}

header {
    padding: 20px;
}

.logo {
    font-weight: bold;
    font-size: 96px; /* Larger logo */
    text-transform: lowercase;
}

.logo-link {
    text-decoration: none;
    color: inherit;
}

/* Flexbox Layout for App Grid */
.app-grid {
    display: flex;
    flex-wrap: wrap;  /* Allows the apps to wrap to the next line */
    justify-content: center;  /* Center the items horizontally */
    gap: 40px; /* Add spacing between items */
    padding: 20px;
}

.app-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 200px; /* Control the size of each app container */
    text-align: center;
}

.app-icon {
    width: 150px; /* Control the size of the app icons */
    height: 150px;
    object-fit: contain; /* Ensure images scale proportionally */
    margin-bottom: 10px;
}

.app-name {
    font-weight: bold;
    font-size: 18px;
    margin-top: 10px;
}

.future {
    color: grey;
}
