html {
/*    background: #111111;*/
    background-color: white;
}

body {
    background: #FFFFFF;
    font-family: "Geist", sans-serif;
    font-weight: 500;
    font-size: 16pt;
/*    color: white;*/
    color: #111111;
    line-height: 1.5;
    margin: 0px;
    overflow-x: hidden;
    min-width: 100%;
/*    padding: 0px 50px 0px 50px;*/
}

p {
    margin: 0px;
}

h1, h2, h3, h4, h5, h6 {
/*    color: #FFFFFF;*/
    font-family: "Geist", sans-serif;
    color: #111111;
    font-weight: 500;
    line-height: 1;
    margin: 0px;
}

#img_holder {
    position: absolute;
}

#bg_img {
    opacity: .25;
    margin-top: -25vh;
    margin-left: -25vh;
    min-height: 100vh;
    max-height: 100vh;
    animation: bg_img_show 2s 1;
}

@keyframes bg_img_show {
    0% {opacity: 0; }
    100% {opacity: 0.25; }
}

#website_holder {
    display: grid;
    position: absolute;
    min-width: 100%;
    grid-template-rows: auto auto auto auto;
    grid-template-columns: auto auto auto auto;
    column-gap: 10px;
    grid-row-gap: 10px;
    box-sizing: border-box;
    min-height: 100vh;
    padding: 20px;
    justify-content: space-between;
    align-content: flex-start;
}

#main_header {
    background-color: #FFFFFF;

}


#main_title_container {
    grid-area: 1 / 1 / 2 / 4;
    grid-template-rows: auto auto auto auto;
    grid-template-columns: auto auto auto auto;
    column-gap: 0px;
    grid-row-gap: 0px;
}

#main_title_tab {
    color:#FFFFFF;
    font-size: 72pt;
    font-weight: 700;
    text-decoration-line: none;
    grid-area: 1 / 1 / 2 / 2;
    cursor: default;
}
#main_title_from {
    color: #111111;
    font-size: 72pt;
    font-weight: 700;
    grid-area: 2 / 1 / 3 / 2;
    cursor: default;
}

#content {
/*    background-color: #FFFFFF;*/
    font-size: 12pt;
/*    padding-top: 20px;*/
    flex-grow: 2;
}


.black_shape {
    background-color: #111111;
}

.accent_shape {
    background-color: #e31414;
}



#divider_bar {
    min-height: 20px;
    min-width: 100%;
    max-width: 100%;
    margin-top: 10px;
    margin-bottom: 10px;
}



#workContent {
    display: grid;
    grid-area: 2 / 2 / 4 / 4;
}

#workTextBox {
    display: grid;
    grid-area: 4 / 2 / 5 / 4;
}

.content_title {
    font-size: 24pt;
    font-weight: 700;
    cursor: default;
}

.content_desc {
    max-width: 75%;
    font-size: 10pt;
    cursor: default;
}

#workPdf {
    min-width: 100%;
    min-height: 65vh;
}


.bigWork {
    min-width: 100vh;
}



.video_content {
    min-width: 100%;
    max-width: 500px;
    box-sizing: border-box;
}

.image_content {
    min-width: 100%;
    max-width: 500px;
    max-height: 500px;
    object-fit: scale-down;
    box-sizing: border-box;
    transition: transform .2s;
}

.audio_content {
    min-width: 100%;
    min-height: 200px;
    box-sizing: border-box;
}

/*
.image_content:hover {
    transform: scale(1.5);
}
*/

.audio_content {
    min-width: 300px;
    max-width: 500px;
    max-height: 530px;
    box-sizing: border-box;
}




.font_expand {
    animation: font_expand_anim 1s 1;
}

@keyframes font_expand_anim {
    0% {font-size: 24pt; }
    100% {font-size: 48pt; }
}

.side_bar {
    min-width: 300px;
    font-size: 15pt;
}

#side_bar_list {
    min-width: 300px;
}

.workLink {
    text-decoration: none;
    cursor: pointer;
}

.right_menu {
    grid-area: 1 / 4 / 2 / 5;
    min-width: 250px;
}

.tabLink {
    text-decoration: none;
    cursor: pointer;
    
}


@media screen and (max-width: 1200px) {
    #main_title {
        color: #111111;
        font-size: 48pt;
        font-weight: 700;
    }
    .side_bar {
        display: grid; grid-area: 2 / 1 / 5 / 2;
        min-width: 100px;
    }
    .right_menu {
        grid-area: 1 / 3 / 2 / 5;
        min-width: 150px;
    }
    
    #workContent {
        display: grid;
        grid-area: 2 / 1 / 4 / 4;
    }
    
    #workTextBox {
        display: grid;
        grid-area: 4 / 1 / 5 / 5;
    }
    
    #main_title_container {
        grid-area: 1 / 1 / 2 / 3;
        min-width: 700px;
    }
}

@media screen and (orientation: portrait) {
    #bg_img {
        
        margin-left: -200vh;
    }
    
    .body {
        font-size: 18pt;
    }
    .side_bar {
        min-width: 100px;
    }
    .side_bar_list {
        min-width: 18pt;
    }
    .workLink {
        font-size: 18pt;
    }
    .right_menu {
        grid-area: 1 / 3 / 2 / 5;
        font-size: 24pt;
        min-width: 150px;
        margin: 0 0 0 0;
    }
    #main_title_container {
        grid-area: 1 / 1 / 2 / 3;
        min-width: 400px;
    }
    
    #workContent {
        display: grid;
        grid-area: 2 / 1 / 4 / 4;
    }
    #workTextBox {
        display: grid;
        grid-area: 4 / 1 / 5 / 5;
    }
    .content_desc {
        font-size: 18pt;
        max-width: 100%
    }
}



#homeLink:hover {
    color: #e31414;
}
#reelLink:hover {
    color: #30cf00;
}
#resumeLink:hover {
    color: #f79205;
}
#infoLink:hover {
    color: #949494;
}

.noHover {
    text-decoration: none;
}
.noHover:hover {
/*    color: #111111;*/
}

.titleAnim {
    /*
    animation: 
        moveIn 0.5s;
        */
}

.listItemAnim {
    /*
    animation: 
        moveIn 0.5s;
        */
}


@keyframes moveIn {
  from { margin-left: -1000px; }
  to { margin-left: 0px; }
}

.bumpItemAnim {
    animation: 
        sideBump 0.2s ease-out;
}


@keyframes sideBump {
  0% { margin-left: 0px; }
  10% { margin-left: 10px; }
  0% { margin-left: 0px; }
}



















//unused
@keyframes fadeIn {
  0% { opacity: 0%; }
  100% { opacity: 100%; }
}

//old stuff

#header {
/*    background-color: #EEEEEE;*/
    min-height: 300px;
    max-width: 100%;
}
#header_gradient {
    position:absolute;
/*    background-image: linear-gradient(#e31414, #222222);*/
    background-image: linear-gradient(#e31414, #EEEEEE);
    min-height: 140px;
    min-width: 100%;
    max-width: 100%;
    padding: 1em 2em 1em;
}

#category_title {
    font-size: 240pt;
    line-height: .25;
    margin: 0;
    margin-left: 20px;
    font-weight: 900;
    position: absolute;
    color: #e31414;
    text-decoration-line: none;
    z-index: 1;
    word-wrap: normal;
    max-width: 100%;
}

#title {
/*    color: #FFFFFF;*/
    color: #111111;
    position: absolute;
    z-index: 2;
    margin-left: 1em;
    margin-top: 4em;
}