html{
    font-family:  "Trebuchet MS", Arial, Helvetica, sans-serif;
    height: 100vh;
}

body{
    width: 95%;
    margin: auto;
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

#title{
    height: 2.1em;
    display: flex;
    align-items: flex-end;
    font-size: 1.4em;
    margin: 0 0 0.1em 0;
}

#toolbar{
    padding-top: 0.5em;
    display: flex;
    gap: 0.2em;
}

#landing_image{
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

ul{
    margin: 0;
    padding-left: 0;
    list-style: none;
}

h6{
    color: #333;
    font-size: 1.3em;
    font-weight: 100;
    padding-top: 0;
    padding-bottom: 1px;
    word-spacing: 1px;
    line-height: 100%;
}

nav{
    height: 2em;
    display: flex;
    gap: 1.3em;
}

.content_replacement{
    font-size: 0.86em;
    font-style: normal;
    font-weight: 100;
    color: #666;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s;
    user-select: none;
    height: 100%;
    justify-self: center;
}

.content_replacement:hover{
    color: #444;
    font-size: 1em;
}

.content_replacement:active{
    color: #222;    
}


footer p {
    font-size: 10px;
    padding-top: 2px;
    padding-bottom: 2px;
    text-align: center;
}

footer{
    border-top: black solid 1px;
    margin-top: 2em;
}

@keyframes fade-in {
    0%{
        opacity: 0;
    }

    100%{
        opacity: 1;
    }
}

#content {
    animation: fade-in 1.2s;

}

.center_text{
    text-align: center;

}

#projLoad{
    justify-content: space-around;
    padding: 1em;
    margin-top: 1em;
    display: flex;
    flex-wrap: wrap;
    row-gap: 2em;

}

.project_listing{
    width: 10.5em;
    height:10.5em;
    justify-content: flex-start;
    background-color: #dddddd;
    box-shadow: 0 .01em .02em rgba(0, 0, 0, .1);
    border-radius: 1em 1em 0 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: left;
    font-family: sans-serif;
    cursor: pointer;
    transition: all 0.3s;
    justify-content: flex-start;
    user-select: none;
    text-decoration: none;
    margin: .3em;
    color: black;
    overflow: hidden;
}

.project_listing:hover{
    background-color: #a0a0a0;

}

.project_title{
    font-size: 1em;
    font-weight: bold;
}

.project_thumbnail_container{
    width: 100%;
    height: 5em;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.project_thumbnail{
    width: 100%;
}

.project_callsign{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
    width: 95%;
    margin: 0.3em;
}

.project_timerange{
    font-size: .7em;
    color: #555;
    font-weight: lighter;
}

#works_page{
    display: flex;
    flex-direction: column;
    gap: 1.5em;
    margin-top: .5em;
}

.work_row{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-bottom: 3em;
}

.work_left{
    flex: 1;
    display: flex;
    flex-direction: column-reverse;
    justify-content: flex-start;
}

.work_right{
    flex: 2;
    margin-right: 0;
    margin-left: 1.5em;
}

.work_title{
    margin: 0;
    font-size: 3.3em;
    word-spacing: .1em;
    font-weight: 100;
    line-height: 100%;
}

.work_blurb{
    font-size: .9em;
    color: #666;
    line-height: 100%;
}

.work_image{
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: right;
}

.description{
    text-align: center;

}

.work_description{
    font-size: 0.75em;
}

figcaption{
    float: right;
    color: #666;
    font-size: 0.6em;
}

#about_page{
    display: flex;
    flex-direction: row;
}

#about_pic{
    flex: 1;
    object-fit: contain;
    margin: 0;
    height: fit-content;
    width: 20em;
}

#about_blurb{
    flex: 2;
    font-size: .9em;
    color: #666;
}