@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700&display=swap');

body {
    font-family: 'Nunito', Arial, sans-serif;
    text-align: center;
    background-color: #000; /* Solid black background */
    margin: 0;
    padding: 0;
    color: white;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 20px;

}

.logo {
    max-width: 200px;
    width: 100%;
    margin: 20px auto;
    display: block;
}

h1 {
    font-size: 2.5em;
    font-weight: 700; /* Bold weight */
    margin: 20px 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

h2 {
    font-size: 1.5em;
    font-weight: 600; /* Semi-bold weight */
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.section {
    margin: 40px 0;
}

.grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.icon {
    width: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.icon a {
    text-decoration: none;
    color: white;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.icon img {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s;
    background-color: white; /* Changed from white to transparent */
    object-fit: contain;
    padding: 2px; /* Adding padding to create space between image and border */
    border: 5px transparent; /* Adding a border to avoid white edges */
}

.icon img:hover {
    transform: scale(1.2);
}

.icon span {
    display: block;
    margin-top: 8px;
    font-size: 14px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hidden {
    display: none;
}

/* Responsive Styles */
@media (max-width: 768px) {
    h1 {
        font-size: 2em;
    }

    h2 {
        font-size: 1.2em;
    }

    .grid {
        gap: 10px;
    }

    .icon {
        width: 80px;
    }

    .icon img {
        width: 60px;
        height: 60px;
    }

    .icon span {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.5em;
    }

    h2 {
        font-size: 1em;
    }

    .icon {
        width: 60px;
    }

    .icon img {
        width: 50px;
        height: 50px;
    }

    .icon span {
        font-size: 10px;
    }
}

.hidden-content {
    display: none;
}