* {
    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;
}

main{
    color: white;
    font-size: 50px;
    min-height: calc(100vh - 175px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    text-align: center
}


/* 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;
    }
}

@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;
    }
}