@import url('https://fonts.googleapis.com/css2?family=Funnel+Sans:ital,wght@0,300..800;1,300..800&display=swap');

html {
    font-size: 15px;
}

body {
    margin: 0px;
    font-family: "Funnel Sans", serif;
    caret-color: transparent;
    cursor:default;
}
.nav-links {
    display: flex;
    justify-content: space-evenly;
    list-style: none;
    padding: 1rem 0;
    margin: 0;
    gap: 0.5rem;
    background-color: black;
}

.nav-links a {
    text-decoration: none;
    font-size: 11px;
    padding: 10px 0;
    color: white;
    font-weight: 200;
    text-align: center;
}

header {
    padding-left: 2%;
    padding-right: 2%;
    color:#14213D;
}

main {
    background-color: #F8F5F2;
}

.about-me {
    padding: 1rem 2%;
}

.NewYork-Pic img {
    display: block;
    margin-left: auto;
    width: 18rem;
    margin-right: auto;
    border-radius: 100%;
    padding-bottom: 1rem;
}

.interests-container {
    background-color: rgb(9, 9, 9);
    color: white;
    padding:1rem 2%;
}
.interests-container h2 {
    font-size:1.75rem;
    font-weight: 400;
    border-bottom: 1px solid rgb(78, 78, 78);   
}
.interests {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    gap: 10px;
}
.interest {
    display: flex;
    flex-direction: column;
}
.interest img {
    border-radius: 1rem;
    width: 15rem;
    height: 15rem;
}
.interest-desc {
    padding-top: 1rem;
    padding-bottom: 1rem;
    font-size: 1.25rem;
    font-weight: 200;
}

footer {
    text-align: center;
    font-size: 0.75rem;
}

@media (min-width: 426px) {

    html {
        font-size: 16px;

    }
    .nav-links {
        padding: 1rem 10%;
        margin: 0;
    }
    
    .nav-links a {
        font-size: 20px;
        padding: 10px 15px;
        font-weight: 200;
    }

    .NewYork-Pic img {
        display: block;
        margin-left: auto;
        margin-right: auto;
        border-radius: 100%;
        padding-bottom: 1rem;
    }
}