/* /Components/Common/Dropdown.razor.rz.scp.css */
.root[b-8hds8ez3vi]{
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.icon[b-8hds8ez3vi]{
    height: 100%;
    aspect-ratio: 1;
}

.dropdown-value[b-8hds8ez3vi]{
    flex-grow: 1;
    font-size: 1.2em;
}

.dropdown-list[b-8hds8ez3vi]{
    position: absolute;
    flex-direction: column;
    z-index: 1;
    top: calc(100% + 8px);
    width: 100%;
    max-height: 310px;
    overflow: auto;
    background-color: white;
}

.dropdown-list-item[b-8hds8ez3vi]{
    padding: 0.8rem 1rem;
    font-size: 1.2em;
}

/* /Components/Common/MiniButton.razor.rz.scp.css */
.mini-button[b-8syqj2h0og] {
    cursor: pointer;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
}

.mini-button:hover[b-8syqj2h0og] {
    background-color: rgba(123, 123, 123, 0.2)
}

.mini-button:active[b-8syqj2h0og] {
    background-color: rgba(123, 123, 123, 0.5);
}

.mini-button-icon[b-8syqj2h0og] {
    height: 55%;
}

/* /Components/ExperienceWidget.razor.rz.scp.css */
.root[b-xdj8m6y2ae] {
    display: flex;
    flex-direction: column;
    max-width: calc(600px + 20vw);
    width: 100%;
    gap: calc(10px + 0.4vw);
}

.header[b-xdj8m6y2ae] {
    display: grid;
    align-items: flex-end;
    grid-column-gap: 15px;
    grid-row-gap: 5px;
}

@media screen and (min-width: 721px) {
    .header[b-xdj8m6y2ae] {
        grid-template-areas: "icon title date";
        grid-template-columns: auto 1fr auto;
    }

    .header-title[b-xdj8m6y2ae] {
        text-align: center;
    }

    .header-date[b-xdj8m6y2ae] {
        text-align: right;
    }
}

@media screen and (max-width: 720px) and (min-width: 481px) {
    .header[b-xdj8m6y2ae] {
        grid-template-areas: "icon  blank"
                             "title date";
    }

    .header-date[b-xdj8m6y2ae] {
        text-align: right;
    }
}

@media screen and (max-width: 480px) {
    .header[b-xdj8m6y2ae] {
        grid-template-areas: "icon"
                             "title"
                             "date";
    }

    .header-title[b-xdj8m6y2ae] {
        display: none;
        margin-top: -20px;
    }
}


.header-icon[b-xdj8m6y2ae] {
    grid-area: icon;
    max-height: calc((160px + 2vw) / 2);
    max-width: calc(160px + 2vw);
    width: 100%;
    object-fit: contain;
}

.header-title[b-xdj8m6y2ae] {
    grid-area: title;
    justify-self: stretch;
    white-space: pre-wrap;
}

.header-date[b-xdj8m6y2ae] {
    grid-area: date;
}

.divider[b-xdj8m6y2ae]{
    width: 100%;
    height: var(--line);
    fill: black;
}

.links[b-xdj8m6y2ae]{
    display: flex;
    flex-flow: row wrap;
    column-gap: calc(12px + 0.6vw);
    row-gap: calc(8px + 0.4vw);

}

.links-item[b-xdj8m6y2ae]{
    width: calc(200px + 2vw);
}
/* /Components/IconButton.razor.rz.scp.css */
.root-container[b-hxi81lwh71]{
    container: icon-button / size;
    aspect-ratio: 4 / 1;
    width: calc(160px + 4*var(--mvw));
    min-height: 35px;
}

.root[b-hxi81lwh71] {
    height: 100%;
    display: flex;
    align-items: center;
    padding: 15cqh;
    gap: 20cqh;
    border: 3px solid black;
    cursor: pointer;
    box-sizing: border-box;
}

.root:hover[b-hxi81lwh71] {
    background-color: #f0f0f0;
}

.icon[b-hxi81lwh71] {
    height: 100%;
    aspect-ratio: 1;
    filter: brightness(0);
}

.text-container[b-hxi81lwh71] {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5cqh;
}

.name[b-hxi81lwh71]{
    font-size: calc(0.6rem + 18cqh);
}

.primary-name[b-hxi81lwh71] {
    font-weight: bold;
    font-size: calc(0.5rem + 15cqh);
}

.sub-name[b-hxi81lwh71] {
    font-size: calc(0.35rem + 12cqh);
}
/* /Components/MediaShowcase.razor.rz.scp.css */
.root[b-65lcid3iwk] {
    align-self: center;
}

.media-container[b-65lcid3iwk] {
    width: 100%;
    aspect-ratio: 16/9;
    outline: 3px solid black;
    outline-offset: -2px;
    background-color: #eee;
}

.media[b-65lcid3iwk] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.media-list[b-65lcid3iwk] {
    margin-top: 10px;
    width: 100%;
    display: flex;
    gap: 2.5%;
}

.media-list-item[b-65lcid3iwk] {
    width: 18%;
    outline: 1px solid black;
    position: relative;
}

.media-list-item:hover[b-65lcid3iwk] {
    cursor: pointer;
    outline: 3px solid black;
    outline-offset: -2px;
}

.media-list-item-thumbnail[b-65lcid3iwk] {
    width: 100%;
    display: block;
}

.media-list-item-playicon[b-65lcid3iwk] {
    width: 32px;
    height: 32px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}
/* /Components/ProjectWidget.razor.rz.scp.css */
.root-container[b-rb2ncvd63v]{
    container: project / inline-size;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.root[b-rb2ncvd63v] {
    display: grid;
    row-gap: 10px;
    margin: 48px 0;
}

.divider[b-rb2ncvd63v] {
    grid-area: divider;
    width: 3px;
    height: calc(100% + 97px);
    top: -48px;
    fill: black;
}

.header[b-rb2ncvd63v] {
    grid-area: header;
    align-self: end;
    display: flex;
    flex-direction: column;
    row-gap: 10px;
}

.header-tags[b-rb2ncvd63v] {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 5px;
}

[b-rb2ncvd63v] .project-media {
    grid-area: media;
    align-self: center;
}

.info[b-rb2ncvd63v] {
    grid-area: info;
}

.info-links[b-rb2ncvd63v] {
    margin-top: 20px;
    display: flex;
    column-gap: calc(20px + 1*var(--mvw));
    row-gap: 15px;
    flex-wrap: wrap;
}

@container (width < 1000px) {
    .root[b-rb2ncvd63v] {
        max-width: 750px;
        grid-template-areas: "header"
                             "media"
                             "info";
    }

    .divider[b-rb2ncvd63v] {
        display: none;
    }
}

@container (width >= 1000px) {
    .root[b-rb2ncvd63v] {
        grid-template-areas: "media divider header"
                             "media divider info";
        grid-template-columns: 4fr 3px 5fr;
        column-gap: 5%;
    }
}
/* /Components/SkillWidget.razor.rz.scp.css */
.root[b-zzten4nd0m] {
    display: flex;
    flex-direction: column;
    row-gap: 10px;
    padding: 10px;
    align-items: stretch;
    max-width: 800px;
}

.header[b-zzten4nd0m]{
    display: flex;
    flex-direction: row;
    align-items: end;
    justify-content: space-between;
}

.divider[b-zzten4nd0m]{
    height: var(--line);
}

.icon[b-zzten4nd0m]{
    width: 64px;
    aspect-ratio: 1;
}
/* /Components/Tag.razor.rz.scp.css */
.root[b-hgcddj50t9] {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 4px;
    padding: 0px 12px;
    border-radius: 0.5rem;
    background-color: #333;
    height: 28px;
}

.text[b-hgcddj50t9]{
    font-size: 0.9rem;
    color: white;
}

[b-hgcddj50t9] .button {
    height: 80%;
}
/* /Components/TagSearch.razor.rz.scp.css */
.root[b-1rgcybydjz]{
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.selected-list[b-1rgcybydjz]{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: start;
    gap: 0.5rem;
}

.tag-input[b-1rgcybydjz]
{
    border: none;
    outline: none;
    flex-grow: 1;
    font-size: 1.2em;
}


.result-list[b-1rgcybydjz]{
    position: absolute;
    flex-direction: column;
    z-index: 1;
    top: calc(100% + 8px);
    width: 100%;
    max-height: 310px;
    overflow: auto;
    background-color: white;
}

[b-1rgcybydjz] .search-button{
    height: 100%;
    aspect-ratio: 1;
}

.result-list-item[b-1rgcybydjz]{
    padding: 0.8rem 1rem;
    font-size: 1.2em;
}
/* /Components/TextSearch.razor.rz.scp.css */
.root[b-w6a9xt2p9v]{
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.text-input[b-w6a9xt2p9v]
{
    border: none;
    outline: none;
    flex-grow: 1;
    font-size: 1.2em;
}


.result-list[b-w6a9xt2p9v]{
    position: absolute;
    flex-direction: column;
    z-index: 1;
    top: calc(100% + 8px);
    width: 100%;
    max-height: 310px;
    overflow: auto;
    background-color: white;
}

[b-w6a9xt2p9v] .search-button{
    height: 100%;
    aspect-ratio: 1;
}

.result-list-item[b-w6a9xt2p9v]{
    padding: 0.8rem 1rem;
    font-size: 1.2em;
}
/* /Layout/NavBar.razor.rz.scp.css */
@media only screen and (max-width: 680px) {
    .header-menu[b-en1a8on1pm] {
        display: none !important;
    }
}

@media only screen and (min-width: 680px) {
    .dropdown-button[b-en1a8on1pm],
    .dropdown-menu[b-en1a8on1pm] {
        display: none !important;
    }
}

.dropdown-button[b-en1a8on1pm] {
    width: 50px;
    fill: black;
}

.dropdown-button:hover[b-en1a8on1pm] {
    cursor: pointer;
}

.dropdown-menu[b-en1a8on1pm] {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: center;
    background-color: white;
    margin-bottom: 15px;
}

.navigation-header[b-en1a8on1pm] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: calc(6px + 1vi) 2%;
    gap: 48px;
}

.header-menu[b-en1a8on1pm] {
    display: flex;
    justify-content: space-around;
    width: 600px;
    gap: 16px;
}

.navigation-button[b-en1a8on1pm] {
    margin: 10px;
    font-size: 25px;
}

.navigation-button-selected[b-en1a8on1pm]{
    font-weight: 1000;
}

.navigation-button:hover[b-en1a8on1pm] {
    text-decoration: underline;
}

.header-logo[b-en1a8on1pm]{
    margin-right: 30px;
    font-size: 40px;
}
/* /Pages/Contact.razor.rz.scp.css */
.content[b-6bjyog6xes] {
    flex: auto;
}

.contact-list[b-6bjyog6xes]
{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap:
        calc(24px + 0.75 * var(--mvw))
        calc(32px + 1 * var(--mvw));
    justify-items: center;
    justify-content: center;
}

[b-6bjyog6xes] .contact-list-item
{
    width: calc(260px + 6 * var(--mvw));
}

.space-top[b-6bjyog6xes]{
    flex-grow: 40;
}

.space-bottom[b-6bjyog6xes]{
    flex-grow: 60;
}
/* /Pages/Experience.razor.rz.scp.css */
.button[b-101o1i161o]{
    width: calc(400px + 15 * var(--mvw));
}
/* /Pages/Home.razor.rz.scp.css */
.content[b-ois3x2fd0s] {
    padding: 0;
    gap: 0 !important;
    flex: auto;
}

.space-top[b-ois3x2fd0s]{
    flex-grow: 40;
}

#name[b-ois3x2fd0s] {
    font-size: calc(50px + 0.8vw);
    font-weight: 400;
}

#sub-name[b-ois3x2fd0s] {
    font-size: calc(20px + 0.2vw);
    font-weight: 100;
}


.space-bottom[b-ois3x2fd0s]{
    flex-grow: 60;
}
/* /Pages/Projects.razor.rz.scp.css */
.content[b-437rvyghf2]{
    align-items: stretch;
}

.search[b-437rvyghf2]{
    display: flex;
    flex-wrap: wrap;
    align-self: stretch;
    gap: 16px;
}

[b-437rvyghf2] .search-skill{
    height: 48px;
    flex-grow: 3;
    flex-basis: 0;
}

[b-437rvyghf2] .search-sort{
    height: 48px;
    flex-grow: 1;
    flex-basis: 0;
    min-width: 250px;
}

@media (min-width: 1000px) {
    .search[b-437rvyghf2]{
        flex-direction: row;
    }

    [b-437rvyghf2] .search-skill{
        min-width: 600px;
    }
}

@media (max-width: 1000px) {
    .search[b-437rvyghf2]{
        flex-direction: column;
    }
}
/* /Pages/Skills.razor.rz.scp.css */
.content[b-cku0chdk1x]{
    align-items: stretch !important;
}

@media screen and (max-width: 1100px) {
    .skill-list[b-cku0chdk1x] {
        grid-template-columns: repeat(1, 1fr);
    }
}

@media screen and (min-width: 1100px) {
    .skill-list[b-cku0chdk1x] {
        grid-template-columns: repeat(auto-fit, minmax(600px, 1fr));
    }
}

.skill-list[b-cku0chdk1x]{
    display: grid;
    gap: calc(24px + 1.5 * var(--mvw));
    justify-items: center;
    align-items: start;
}
