@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;
    padding: 1rem 2%;
}
.Resume h2 {
    font-size: 2rem;
    font-weight: 550;
}
.PhotoSummary {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 0.5rem  
}

.ClientDescription ul {
    padding-left: 0;
}
.PhotoSummary img {
    border-radius: 10px;
    max-width: 200px;
}
.PhotoSummary h3 {
    font-size: 1.5rem;
    margin: 0.75rem 0;
    font-weight: 800;
}

.PhotoSummary p {
    font-size: 1rem;
    }
.Socials {
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    padding: 5px;
    border-top: 1px solid black;
    border-bottom: 1px solid black;
    gap: 1.75rem;
}

.Socials div {
    font-size: 1rem;
}
.Socials img {
    width: 20px;
}
.Certifications {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.Cert {
    display: flex;
    gap: 0.5rem;
}
.certDescription {
    align-content: center;
}
.Education {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.Institution {
    display: flex;
    gap: 0.5rem
}
.Experience {
    display: flex;
    gap: 0.5rem;
    flex-direction: column;
}
.Organization {
    display: flex;
    gap: 0.5rem;
}
.Clients {
    display: flex;
    gap:0.5rem;
    flex-direction: column;
}
.Client {
    display: flex;
    gap: 0.5rem;
}
.SkillsContainer {
    display:flex;
    flex-wrap: wrap;
    gap: 0.3rem;
}
.SkillsContainer div {
    background-color: rgb(100, 100, 100);
    color: white;
    border-radius: 0.5rem;
    padding-left: 0.2rem;
    padding-right:0.2rem;
}
.SkillsTech:hover {
    background-color: rgb(111, 101, 196);
    cursor:pointer;
}
.SkillsNonTech:hover {
    background-color: rgb(101, 196, 128);
    cursor:pointer;
}
h3 {
    font-size: 1.5rem;
}

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

@media screen and (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;
    }
    .PhotoSummary {
        display: flex;
        flex-direction: row;
        gap: 2rem;
        flex-wrap: wrap;
    }

    .PhotoSummary img {
        border-radius: 10px;
        max-width: 250px;
    }
}