body {
    background-color: antiquewhite;
    font-size: 1.1em;
    max-width: clamp(40%, 2000px - 40vw, 90%);
}

.avatar {
    box-shadow: 0 0 20px gray;
    border-radius: 50%;
    width: 30%;
    height: fit-content;
}

.screenshot-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.screenshot {
    box-shadow: 0 0 20px gray;
    width: 100%;
    height: auto;
    margin: 5px 5px;
}

.screenshot-small {
    box-shadow: 0 0 20px gray;
    display: flex;
    flex-shrink: 0;
    width: 60%;
    height: fit-content;
    margin: 5px 5px;
}

.screenshot-extra-small {
    box-shadow: 0 0 20px gray;
    display: flex;
    flex-shrink: 0;
    width: 30%;
    height: fit-content;
    margin: 5px 5px;
}

.screenshot-side-by-side {
    box-shadow: 0 0 20px gray;
    display: flex;
    width: calc(100% - 10px);
    height: fit-content;
    margin: 5px 5px;
}

.screenshot-text {
    display: flex;
    align-self: center;
    margin-left: 5px;
    margin-right: 5px;
}

.career-title-grid {
    display: grid;
    grid-template-columns: 10% 30% 30% 30%
}

.career-title-icon {
    height: fit-content;
    width: 80%;
    margin: auto;
}

.career-title-company {
    font-weight: bold;
    font-size: 1.5em;
    align-content: center;
}

.career-title-job {
    align-content: center;
    text-align: center;
}

.career-title-date {
    font-style: italic;
    font-size: 0.85em;
    align-content: center;
    text-align: right;
}

.header-link {
    color: black;
    text-decoration: underline;
    display: inline-block;
    padding-left: 2em;
    padding-right: 2em;
    width: 6em;
}

.social-link {
    color: black;
    text-decoration: underline;
}

.title {
    font-size: 3em;
}

.title-link {
    color: black;
    text-decoration: none;
}

.title-container {
    display: grid;
    grid-template-columns: 85% 15%;
}

.subtitle {
    font-style: italic;
    font-size: 0.9em;
}

.icon-link {
    padding: 0.5em;
    font-size: 2em;
    color: black;
    text-decoration: none;
}

.text-center {
    text-align: center;
}

.center {
    margin: auto
}

.center-flex {
    display: flex;
    align-items: center;
    justify-content: center;
}

.bar-background {
    width: 100%;
    height: 1.5em;
    background-color: white; 
    margin-top: 10px;
    margin-bottom: 10px;
}

.bar-fill {
    height: 1.5em;
    background-color: coral; 
}

.bar-title {
    color: white;
    float: left;
    position: relative;
    left: 5px;
    top: 0.15em;
}

.bar-value {
    color: white;
    float: right;
    position: relative;
    left: -5px;
    top: 0.15em;
}

.li-multiple-columns {
    column-count: 3;
}

@media (max-width: 600px) {
    .screenshot-container {
        display: block;
    }

    .screenshot-small {
        display: block;
        width: 100%;
    }

    .screenshot-text {
        display: block;
    }

    .screenshot-extra-small {
        display: block;
        width: 100%;
    }

    .screenshot-side-by-side {
        display: block;
        width: 100%;
    }
    
    .title-container {
        display: block;
    }
    
    .subtitle {
        text-align: center;
        padding-bottom: 1em;
    }
    
    .center-flex {
        display: block;
    }
    
    .career-title-grid {
        grid-template-columns: 0 40% 30% 30%;
    }

    .li-multiple-columns {
        column-count: 2;
    }
}
