/*@font-face {
    font-family: "headerFont";
    src: url('../fonts/Roboto-Light.ttf') format("truetype");
}
*/
@font-face {
    font-family: "roboto-regular";
    src: url('../fonts/Roboto-Light.ttf') format("truetype");
}

:root {
    --text-color: #ffffff;
    --image-background-color: #DDDD;
    --background-color: #e2e1e0;
    --header-background-color: #F57C00;
    --header-border-background-color: #F57C00;
    --tab-button-color: #F57C00;
    --tab-button-color-hover: #FB8C00;
    --expanded-image-background-color: rgba(00, 00, 00, 0.8);
    --thumbnail_border-color: #dddd;
    --header-height: 45px;
    --mobile-header-height: 150px;
    --landscape-mobile-header-height: 60px;

    user-select: none;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}


body {
    margin: 0;
    padding: 0;
    background: var(--background-color);
    background-image: var(--background-image);
    background-repeat: no-repeat;
    background-size: 1920px 600px;
    background-position: 100px 100%;
    font-family: "roboto-regular";
}

h1 {
    text-align: center;
    font-family: "roboto-regular";
    font-size: 48;
}

#header {
    background-color: var(--header-background-color);
    border-bottom: solid var(--header-border-background-color) 1px;
    color: var(--text-color);
    position: fixed;
    top: 0;
    padding: 0px;
    height: var(--header-height);
    width: 100%;
    display: flex;
    align-items: flex-start;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
}


#root-container {
    display: flex;
    align-items: flex-start;
    padding-top: 60px;
    padding: 60px 10px 10px 10px;
    height: 92%;
}


.tab-button {
    margin-left: 50px;
    width: 200px;
    height: 100%;
    text-align: center;
    vertical-align: middle;
    line-height: 45px;
    white-space: nowrap;
    background-color: var(--tab-button-color);
}

.tab-button:hover {
    background-color: var(--tab-button-color-hover);
}

.card {
    background: #fff;
    border-radius: 2px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    transition: all 0.3s cubic-bezier(.25, .8, .25, 1);
}

#about-container {
    display: inline-block;
    padding: 0px 10px 0px 10px;
    min-height: 500px;
    height: 100%;
    width: 280px;
    min-width: 280px;
    max-width: 280px;
    text-align: center;
    flex-grow: 0;
}


#html-container {
    margin-left: 10px;
    height: 100%;
    flex-grow: 2;
    padding: 0px 10px 0px 10px;
    overflow: auto;
}

#projectLink {
    margin-bottom: 10px;
}

.thumbnail {
    margin: 10;
}

#about-portrait {
    width: 100px;
    height: 100px;
    display: block;
    margin: 0 auto;
    padding: 10px;
    border-radius: 50%;
}


#about-summary {
    text-align: left;
}

vertical .thumbnail {
    margin: 5px 10px 5px 0px;
    border: 5px solid var(--thumbnail_border-color);
}

#expanded-image-container {
    background-color: var(--expanded-image-background-color);
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}


#expanded-image {
    height: auto;
    max-width: 95%;
    max-height: 95%;
}


a:visited {
    color: #4737f4;
}



@media screen and (max-device-height:900px)  {

    #header {
        height: var(--mobile-header-height);
        display: flex;
        justify-content: center;
        width: 100%;
    }

    #image-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

    #html-container {
        margin-left: 0px;
        margin-bottom: 20px;
        height: auto;
        max-width: 100%;
        overflow: visible;
        word-wrap: break-word;
        padding: 15 15 15 15;
        margin: 0;
        padding-top: var(--mobile-header-height);

    }

    #about-container {
        font-size: 3vw;
        min-height: auto;
        max-height: auto;
        height: auto;
        width: 100%;
        min-width: 100%;
        max-width: 100%;
        text-align: center;
        margin-top: 10;
        margin-bottom: 10;
        padding: 0 0 10 0;

    }

    #about-summary {
        padding: 10;
        text-align: left;
    }

    #root-container {
        display: flex-flow;
        flex-direction: column-reverse;
        margin: 0 0 0 0;
        padding: 0 10 0 10;
        overflow: scroll;
        height: 100%;
    }

    .thumbnail {
        margin: 10;
    }

    .tab-button {
        font-size: 3vw;
        line-height: var(--mobile-header-height);
        width: 100%;
        margin: 0;
    }
}

@media  screen and (max-device-width:900px) and (orientation: landscape) {

    #header {
        height: var(--landscape-mobile-header-height);
        display: flex;
        justify-content: center;
        width: 100%;
    }

    .tab-button {
        font-size: 2vw;
        line-height: var(--landscape-mobile-header-height);
        width: 100%;
        margin: 0;
    }

    #html-container {
        margin-left: 0px;
        margin-bottom: 20px;
        height: auto;
        max-width: 100%;
        overflow: visible;
        word-wrap: break-word;
        padding: 15 15 15 15;
        margin: 0;
        padding-top: var(--landscape-mobile-header-height);

    }
}