* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: "Jersey 10", sans-serif;

}

/* All Header Styles */
header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem;
    gap: 1rem;
    font-size: 1.5rem;
    background-color: rgb(24, 24, 24);
}


.nav-container {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}


.icon-link img {
    width: 350px;
    overflow: hidden;
    position: relative;
    top: 0.1rem;
}


.text-link {
    display: flex;
    color: white;
    text-decoration: none;
    gap: 0.25rem;
}


.text-link:hover {
    color: rgb(80, 68, 145);
}


.text-link-dots {
    vertical-align: super;
    position: relative;
    top: -0.25em;
}

.highlighted-nav-text {
    color: rgb(80, 68, 145);
}

/* All Main Body Styles */
body {
    background: black;
    color: white;
}

main {
    min-height: calc(100vh - 300px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    text-align: center
}


.link-pannel-collection {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 1fr);
    column-gap: 1rem;
    row-gap: 1rem;
    max-width: 1000px;
    width: 100%;
    justify-items: center;
    align-items: center;
}

.link-pannel {
    position: relative;
    text-align: center;
    color: white;
    align-items: center;
    cursor: pointer;
    width: 100%;
    max-width: 10000px;
    transition: transform 0.3s ease;
}

.link-pannel img {
    width: 100%;
    height: auto;
    display: block;
}

.link-pannel-text {
    display: flex;
    position: absolute;
    align-items: center;
    top: 50%;
    left: 50%;
    transform: translate(-9rem, -50%);
    z-index: 10;
    pointer-events: none;
    font-size: 40px;
}

.link-pannel:hover {
    transform: scale(1.02);
}

.link-container{
    font-size: 100%;
    text-align: center;
    margin-bottom: 2rem;
}

.link-container {
    font-size: clamp(2rem, 5vw, 4rem);
    margin-bottom: 1rem;
}







.social-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.social-link {
    display: flex;
    align-items: center;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}


.social-icon {
    margin-right: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    color: #6b6cd9;
    transition: all 0.3s ease;
}

.social-info {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.social-name {
    font-size: 2.5rem;
    letter-spacing: 1px;
}

.social-handle {
    font-size: 1.6rem;
    color: #6b6cd9;

}



/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
    header {
        flex-direction: column;
        padding: 1rem;
        gap: 1.5rem;
        font-size: 1.2rem;
    }

    .nav-container {
        gap: 1.5rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .icon-link img {
        width: 200px;
    }

    .text-link {
        font-size: 0.9rem;
    }

    .link-pannel-collection {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(8, auto);
        gap: 1.5rem;
        padding: 1rem;
    }

    .link-pannel {
        max-width: 100%;
    }

    .link-pannel-text {
        font-size: 20px;
    }

    .link-container {
        font-size: clamp(1.5rem, 4vw, 3rem);
        margin-bottom: 0.75rem;
    }
}

@media screen and (max-width: 480px) {
    header {
        padding: 0.75rem;
        gap: 1rem;
        font-size: 1rem;
    }

    .nav-container {
        gap: 1rem;
        flex-direction: column;
        width: 100%;
    }

    .icon-link img {
        width: 150px;
    }

    .text-link {
        font-size: 0.85rem;
        justify-content: center;
    }

    .link-pannel-collection {
        gap: 1rem;
        padding: 0.5rem;
    }

    .link-pannel-text {
        font-size: 18px;
    }

    .link-container {
        font-size: clamp(1.25rem, 3.5vw, 2.5rem);
        margin-bottom: 0.5rem;
    }
}