* {
    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: 40px;
    text-align: center;
    justify-content: center;
    align-items: center;
    display: flex;
    min-height: calc(100vh - 200px);
}

.contact-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.contact-info-section{
    text-align: center;
    margin: 2rem auto;
    max-width: 800px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-about-me-section {
    text-align: center;
    margin: 4rem auto;
    max-width: 800px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.text-container {
    text-align: left;
    font-size: 1.8rem;
    line-height: 1.3;
    overflow: auto;
    display: flow-root;
    width: 100%;
    max-width: 800px;
}

.contact-about-me-section img {
    float: left;
    margin: 0 1.5rem 1rem 0;
    max-width: 300px;
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 100%;
}

.contact-about-me-section p {
    margin-bottom: 1rem;
    text-align: justify;
}





/* 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;
    }
}