/* Palette */
/* #97C5C5 Background Blue   */
/* #393347 Dark Purple   */
/* #FBFEEE Box White   */
/*  #D47C2F Amber  */
/* #EDEAAC Light Yellow */
/*  #5678A2 Mid Blue  */

::selection {
    /* Change highlight background color to black */
    background: #5678A2;
    /* Change highlight text color to red */
    color: #ffffff;
}


html {
    box-sizing: border-box;
    font-family: Georgia;
    background-color: #97C5C5;
    color: #393347;
}

* {
    margin: 0;
    padding: 0;
}

a {
    color: #5678A2;
}

img {
    width:50px;
    height:50px;
    display:block;
}

.container {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: stretch;
    justify-content: space-evenly;
    height: 100vh;
}

.container > div {
    margin: 20px;
    text-align: center;
    font-size: 24px;
    width: auto;
    height: auto;
    background-color: #97C5C5;
    color: #393347;
}

.row {
    display: flex;
    flex-wrap: wrap;
    padding: 0 4px;
}

.column {
    flex: 32%;
    max-width: 33%;
    padding: 0 4px;
}

.column img {
    height: auto;
    margin-top: 8px;
    vertical-align: middle;
}

@media (max-width: 1000px) {
    .column {
        flex: 45%;
        max-width: 50%;
    }
}

@media (max-width: 800px) {
    .column {
        flex: 100%;
        max-width: 100%;
    }
}

#left{
    min-width:min-content;
    max-width:15vw;

}

#left > div {
    background-color: #FBFEEE;
    width: inherit;
    height: auto;
    padding: 15px;
    border: 3px solid #393347;
}


#left p{
    display:block;
    text-align:left;
    font-size:14px;
    padding-top:15px;
}

#left a {
    display:block;
    text-align: left;
    font-size: 16px;
    width:auto;
}

h2 {
    color: #D47C2F;
    text-align:left;
    font-size:32px;
}

span{
    font-weight:bold;
}

#headshot{
    width:70%;
    height:auto;

}

#right {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: stretch;
    justify-content: space-evenly;
}

#right > div {
    background-color: #FBFEEE;
    width: auto;
    height: auto;
    border: 3px solid #393347;
}

#showcase {
    overflow: scroll;
}

#showcase > h2{
    text-align:center;
    padding:15px;
    font-size:36px;
}

.game {
    margin: 15px;
}

.game > img{
    display:block;
    float:left;
    width: 40%;
    height: auto;
    padding-bottom:15px;
}

.game > div {
    display: flex;
    float:right;
    width:59%;
    margin-right:0px;
    padding-bottom:20px;
    flex-direction: column;
    float: left;
    height:min-content;
}

.game .tagline{
    font-style:italic;
}

.game p {
    display:block;
    float:none;
    text-align:left;
    font-size: 14px;
    padding: 0px 10px 15px 10px;
}


.game > h2 {
    display:block;
    clear:both;
    color: #393347;
    font-size:26px;
    padding:20px 10px 10px 0px;
}

#navbar {
    display:block;
    margin-bottom: 10px;
    padding: 0px;
    width: auto;
    height: contain;
}

ul {
    position: relative;
    width: stretch;
    min-width:240px;
    height: contain;
    margin: 0px;
    padding: 0px;
    background-color: #FBFEEE;
    list-style-type: none;
}

li {
    float: left;
    width: 50%;
    height: auto;
    background-color: #FBFEEE;
    margin: 0;
}

li a {
    display: block;
    text-align: center;
    text-decoration: none;
    font-size:18px;
    padding: 10px 0px 10px 0px;
    border-right: 3px solid #393347;
    color: #393347;
}

ul li:last-child a {
    border: none;
}

li a:hover:not(.active) {
    background-color: #EDEAAC;
}

.active {
    background-color: #D47C2F;
    color: #FBFEEE;
}