@import url('https://fonts.googleapis.com/css2?family=Nunito&family=Open+Sans:wght@300&display=swap');

*
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body
{
    font-family: 'Nunito', sans-serif;
    color: white;
    font-size: 1em;
    font-weight: 400;
    width: 100%;
    margin: 0;
    padding: 0;
}
main
{
    width: 100%;
    margin: auto;
    margin-top: 50px;
}

.content
{
    position: relative;
    width: 100%;
    height:100%;
    margin: 0;
    padding:1rem 2rem;
    display: flex;
    align-content: center;
    justify-content: center;
    flex-direction: column;
}

.content h2
{
    position: relative;
    text-align: center;
    font-size:4em;
    color: #c04848;
    font-weight: normal;
    font-family: 'Nunito', sans-serif;
    text-shadow: 0 0 2px transparent, 0 0 2px grey;
}

.content p {
    width: 50%;
    display: flex;
    align-self: center;
    border-top: 3px gray;
}

h2{
    font-size: 1.5em;
    border-bottom: gray 3px;
}

div {
    display:flex;
}

p {
    display: block;
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    text-size-adjust: 100%;
    text-rendering: optimizeLegibility;
    font-family: 'Yeseva One', cursive;
}

#splash { 
    text-align:center;
}

a:-webkit-any-link {
    cursor: pointer;
    text-decoration: none;
}
a.button, button.button{
    border-radius: 0;
}
.mirrored{
    -moz-transform: scale(-1, 1);
    -webkit-transform: scale(-1, 1);
    -o-transform: scale(-1, 1);
    -ms-transform: scale(-1, 1);
    transform: scale(-1, 1);
}

a{
    cursor: pointer;
    text-decoration: none;
}

.button{
    cursor: pointer;
    -webkit-box-pack: center;
    justify-content: center;
    text-align: center;
    white-space: nowrap;
    -webkit-box-align: center;
    align-items: center;
    display: inline-flex;
    font-size: 1rem;
    height: 2.25em;
    line-height: 1.5;
    position: relative;
    vertical-align: top;
    font-weight: 700;
    text-transform: uppercase;
    transition: all 0.2s ease;
}


button {
    align-self: center;
    text-align: center;
    text-decoration: none;
    background-color: white;
    transition-duration: 0.4s;
    color: black;
    border-radius: 5px;
    padding: .2em;
    font-size: 16px;
    font-family: 'Nunito', sans-serif;
    width: 25%;
    cursor: pointer;
    border: 1px black solid;
    border-bottom: none;
    box-shadow: 0 4px gray;
}

button:hover {
    background: lightgray;
}

button:active {
    background: gray;
    box-shadow: 0 2px dimgray;
    transform: translateY(4px);
}

html{
    width: 100%;
    overflow-x: hidden;
    overflow-y: scroll;
    text-size-adjust: 100%;
}

.fab
{
    display:inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    text-rendering: auto;
    -webkit-font-smoothing:antialiased;
}

@media only screen and (max-width: 600px) {
    *{
        margin: 0;
        padding: 0;
        box-sizing: content-box;
    }
}

/*------------About Section---------------*/
#c_about {
    display: flex;
    justify-content: center;
    background-color: whitesmoke;
    z-index: 2;
    box-shadow: inset 0px 0px 16px black;
    color: rgb(70,70,70);
}

#c_about h2{
    border-image-source: linear-gradient(to left, transparent, black, transparent);
    border-bottom: 1px solid;
    border-image-slice: 1;
    border-width: 2px;
}

#c_about p {
    font-family: 'Open Sans', sans-serif;
    padding: 1em;
    font-size: 2em;
    width: 80%;
    margin: auto;
}
/*----------------------------------------*/
/*-------About Responsiveness-------------*/
@media only screen and (max-width: 600px) {
    #c_about {
        width: 100%;
    }
    
    #c_about h2 {
        font-size: 2em;
    }
    
    #c_about p{
        font-size: 1.5em;
        width: 90%;
    }
}
/*----------------------------------------*/
/*-----------------Nav Bar----------------*/
header
{
    position:fixed;
    width:100%;
    height:50px;
    background-color: whitesmoke;
    box-shadow: 0px 0px 16px rgba(0,0,0,.9);
    z-index: 5;
    top:0px;
}

#navLogo
{
    width:10%;
    height:100%;
    margin-left:10px;
    float:left;
}

#navLogo img{
    width: 100px;
    height: 50px;
}

header ul
{
    height: 100%;
    position:absolute;
    right: 0;
    top:0;
    list-style-type: none;
    z-index: 65;
    display:block;
    white-space: nowrap;
    padding-right: 25px;
    padding-top: .5em;
}

header ul li
{
    display: inline-block;
    padding-right: 25px;
    
    text-align: center;
    vertical-align: middle;
}

header ul li a
{
    color:black;
    font-size: 1.9em;
}

header ul li a:hover{
    text-decoration: none;
    color: gray;
}

header ul li a.icon {
    display: none;
    margin: 0;
    padding: 0;
}

.current
{
    color: #c04848;
    font-weight: 400;
}
/*----------------------------------------*/
/*--------Nav Bar Responsiveness----------*/
@media only screen and (max-width: 800px) {
    header ul.ResponsiveNav {
        position: absolute;
        right: 0px;
        margin-right: 0;
        padding-right: 0;
        top:0;
        display: flex;
        flex-direction: column;
        z-index: 4;
        padding-top: 50px;
    }
    
    header ul li a.navClose {
        display: none;
    }
    
    header ul.ResponsiveNav li {
        padding-right: 0;
    }
    
    header ul li a.navOpen {
        display: flex;
        padding-left: .2em;
        padding-right: .2em;
        background: rgb(230,230,230);
        border: 1px groove black;
        box-shadow: 0 0 5px black;
        box-shadow: inset 0 0 2px black;
    }
    
    header ul li a.navOpen:hover {
        background: lightgray;
        color:black;
    }
    
    header ul li a.icon {
        display: flex;
        margin: 0;
        padding: 0;
        position: absolute;
        top:.2em;
        right:.5em;
    }
}
/*----------------------------------------*/
/*-----------------Footer-----------------*/
footer
{
    padding-top: 1rem;
    padding-bottom: 1rem;
    padding-left: 10%;
    padding-right: 10%;
    text-align: center;
    background-color: whitesmoke;
    color: black;
    flex-wrap: wrap;
    display: flex;
    z-index: 2;
    position: fixed;
    width: 100%;
    height: 50px;
    bottom: 0px;
    box-shadow: 0px 0px 16px rgba(0,0,0,.9);
}

.fContent {
    width: 100%;
    align-items: center;
}

.fContent span {
    margin-left: auto;
}

#fList{
    align-self: flex-end;
}

#fList ul{
    list-style: none;
    margin-left: auto;
    padding-right: 2em;
    display: inline;
}

#fList ul li{
    text-align-last: center;
    justify-content: center;
    margin-left: auto;
    float: left;
    padding-left: 2rem;
    padding-right: 2rem;
}


#fList ul li a{
    color: black;
}

#fList ul li a:hover{
    color: gray;
} 
/*----------------------------------------*/
/*----------Footer Responsiveness---------*/

@media only screen and (max-width: 600px) {
    footer {
        padding: 0.2em;
    }
    
    #fList{
        width: 50%;
        font-size: 0;
        margin: auto;
        margin-left: .2em;
    }
    
    #fList ul{
        display: flex;
        width: 100%;
    }
    
    #fList ul li {
        padding: .2em;
        margin-left: 15%;
    }
    
    #fList ul li a span .fab{
        padding: 0;
    }
    
    .fContent Span {
        margin-left: 0;
        margin-right: auto;
    }
    
}

/*----------------------------------------*/
/*-------------Featured Section-----------*/
#c_featured {
    width: 100%;
    height: 90vh;
    background-image: url(../../games/stoutheart/img/Stoutheart_MainBackground.jpg);
    background-position: 0% 50%;
    border: black 2px inset;
    align-self: center;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-wrap: wrap;
}

#c_featured #Blurb {
    background: rgba(0,0,0,.8);
    box-shadow: 0 0 8px black;
    width: 45%;
    margin: auto;
    align-self: flex-end;
    flex-direction: column;
}

#c_featured #Blurb img{
    color: white;
    border-image-source: linear-gradient(to right, transparent, whitesmoke, transparent);
    border-bottom: 2px solid;
    border-image-slice: 1;
    border-width: 2px;
}

#c_featured #Blurb p{
    color: lightgrey;
    font-size: 1.5em;
    font-family: 'Open Sans', sans-serif;
    width: 100%;
    padding-top: 0;
}

#c_featured #Blurb button{
    background: orange;
    box-shadow: 0 4px black;
    border-radius: 50px;
    margin: 1em;
    margin-top: 0;
    width: 25%;
    height: 2.5em;
    padding: .2rem;
    color: white;
    font-weight: 700;
    font-size: 1.2em;
    align-self: center;
}

#c_featured #Blurb button:hover{
    background: darkorange;
}

#c_featured #Blurb button:active {
    background: coral;
}
/*----------------------------------------*/
/*------Featured Section Responsiveness---*/
@media only screen and (max-width: 800px) {
    #c_featured {
        width: 100%;
        height: 60vh;
        background-image: url(../../games/stoutheart/img/Stoutheart_MainBackground.jpg);
        background-position: 45% 50%;
        border: black 2px inset;
        align-self: center;
        margin: auto;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        flex-wrap: wrap;
    }
    
    #c_featured #Blurb {
        background: rgba(0,0,0,.7);
        box-shadow: 0 0 8px black;
        width: 90%;
        padding: .3em;
        margin: auto;
        align-self: flex-end;
        flex-direction: column;
    }

    #c_featured #Blurb button{
        background: orange;
        box-shadow: 0 4px black;
        border-radius: 50px;
        margin: 1em;
        margin-top: 0;
        width: 40%;
        padding: .2rem;
        color: black;
        font-size: 1em;
        align-self: center;
    }
}
/*----------------------------------------*/
/*-------------Newsletter-----------------*/
#News {
    width: 100%;
    display: flex;
    background: rgb(40,40,40);
    color: whitesmoke;
    height: 30vh;
    margin-bottom: 50px;
    flex-direction: column;
    align-items: center;
}

#News h2{
    color: #c04848;
    margin-top: 0;
    padding-top: 0;
    border-image-source: linear-gradient(to right, transparent, whitesmoke, transparent);
    border-bottom: 2px solid;
    border-image-slice: 1;
    border-width: 2px;
    width: 100%;
    text-shadow: 0 0 0 transparent;
}

#News h3 {
    margin-top: 1rem;
    margin-bottom: 1rem;
    padding: 1em;
    width: 30%;
    text-align: center;
}

#NewsButton {
    margin: auto;
    margin-top: 1.5em;
    margin-bottom: 1em;
    flex-direction: row;
    flex-wrap: wrap;
}

#NewsButton span{
    width: 100%;
    margin: auto;
}

#NewsButton input[type="text"]{
    background: black;
    box-sizing: border-box;
    padding: .2em;
    margin-top: .2rem;
    margin-bottom: .2rem;
    border: 1px white solid;
    border-radius: 5px;
    color: whitesmoke;
    width: 70%;
    margin-right: auto;
}

#NewsButton button {
    align-self: center;
    margin-bottom: auto;
    margin-top: 0;
}
/*----------------------------------------*/
/*--------Newsletter Responsiveness-------*/
@media only screen and (max-width: 740px) {
    #News {
        height: 25vh;
    }
    
    #News h2{
        font-size: 2em;
    }
}
/*----------------------------------------*/
/*----------Press-------------------------*/
#Press{
    color:black;
    display: flex;
    flex-direction: row;
    background: white;
    margin-bottom: 50px;
    width: 80%;
    margin-left: 20%;
}

#PressContent {
    background: whitesmoke;
    box-shadow: 0px 0px 10px black;
    flex-direction: row;
    flex-wrap: wrap;
}

#PressContent h2 {
    color: #c04848;
    width: 100%;
    height: 10%;
    margin-top: 0;
    margin-bottom: .8em;
    margin-left: auto;
    margin-right: auto;
    border-image-source: linear-gradient(to right, transparent, black, transparent);
    border-bottom: 1px solid;
    border-image-slice: 1;
    border-width: 2px;
}

#PressContent img{
    width: 200px;
    height: 108px;
    align-self: center;
    margin-bottom: 2em;
    margin-left: auto;
}

/*-------Press Card-----------*/
#PressCard {
    width: 40%;
    margin: 5%;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    background: white;
    border: 2px black ridge;
    box-shadow: 0px 0px 5px black;
    padding: 1em;
    margin-top: 0;
}

#PressCard h3 {
    color: #c04848;
    width: 100%;
    margin: auto;
}

#PressCard h4 {
    color: black;
}

#PressCard p {
    text-align: left;
    margin-top: 0;
    margin-bottom: 0;
    color: gray;
    font-family: 'Open Sans', sans-serif;
    align-self: auto;
    padding-top: 0;
    width: auto;
}

#PressCard a {
    color: lightskyblue;
}

#PressCard a:hover {
    color: darkblue;
}

#PressCard ul {
    list-style: none;
}

#PressCard section {
    margin: .5em;
    margin-bottom: 0;
}

/*----------------------------*/
/*-------Legend---------------*/
#LegendInner {
    background: white;
    width: 20%;
    display: flex;
    flex-direction: column;
    padding: 1em;
    flex-wrap: wrap;
    margin: 0;
    margin-bottom: auto;
    position: fixed;
    float: left;
    margin-left: 0;
    z-index: 2;
    height: 100%;;
}

#LegendInner h2 {
    color: #c04848;
    padding-bottom: 0;
    width: 80%;
    margin-top: 0;
    margin-bottom: 0;
    border-image-source: linear-gradient(to right, black, transparent);
    border-bottom: 1px solid;
    border-image-slice: 1;
    border-width: 2px;
}

#LegendInner h3 a{
    color: skyblue;
    width: 80%;
    margin: auto;
    margin-left: auto;
    margin-top: 0;
    margin-bottom: 0;
}

#LegendInner h3 a:hover{
    color: blue;
}

#LegendInner ul {
    width: 100%;
    list-style: none;
}

#LegendInner ul li {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
    margin: auto;
}

#LegendInner li a {
    margin-left: auto;
    padding: .1em;
    
}

#LegendInner li:hover{
    background: whitesmoke;
}

#LegendInner li:active {
    background: lightgray;
}
/*----------------------------------------*/
/*--------Press Responsivenss-------------*/
@media only screen and (max-width: 880px) {
    #Press {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        width: 100%;
        margin-left: 0;
    }
    
    #LegendInner{
        display: none;
    }
    
    #PressContent h2 {
        font-size: 2em;;
    }
    
    #PressCard {
        width: 90%;
    }
}
/*----------------------------------------*/
/*----------Team Page Header--------------*/
#c_TeamHead {
    display: flex;
    justify-content: center;
    background-color: whitesmoke;
    z-index: 2;
    box-shadow: inset 0px 0px 16px black;
    color: rgb(70,70,70);
}

#c_TeamHead h2{
    border-image-source: linear-gradient(to left, transparent, black, transparent);
    border-bottom: 1px solid;
    border-image-slice: 1;
    border-width: 2px;
}

#c_TeamHead h3 {
    font-family: 'Open Sans', sans-serif;
    padding: 1em;
    font-size: 2em;
    width: 80%;
    margin: auto;
}
/*----------------------------------------*/
/*----------Team Page Content--------------*/
#c_TeamContent {
    width: 100%;
    display: flex;
    background: rgb(40,40,40);
    color: whitesmoke;
    margin-bottom: 50px;
    flex-direction: row;
    z-index: 1;
}

#TeamBlocks {
    margin: auto;
    flex-wrap: wrap;
    padding: 2rem;
    flex-direction: row;
    justify-content: flex-start;
}

.Employee {
    margin: auto;
    padding: .5em;
    background: whitesmoke;
    box-shadow: inset 0px 0px 5px black;
    width: 45%;
    height: 40vh;
    margin-bottom: 1em;
    border: ridge 3px gray;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
}

.Employee img {
    width: 200px;
    height: 200px;
    margin: auto;
    margin-left: auto;
    border: whitesmoke 2px groove;
    box-shadow: 0px 0px 5px darkgray;
}

.Employee #Content{
    flex-direction: row;
    width: 50%;
    margin: auto;
    flex-wrap: wrap;
    margin-top: 0;
}

.Employee #Content h2 {
    width:100%;
    margin: auto;
    font-size: 2.1em;
    margin-top: 0;
    margin-bottom: 0;
    border-image-source: linear-gradient(to left, transparent, black, transparent);
    border-bottom: 1px solid;
    border-image-slice: 1;
    border-width: 2px;
}

.Employee #Content ul {
    color: rgb(70,70,70);
    list-style: none;
    margin: auto;
    margin-bottom: 0;
    margin-top: 0;
    padding: 1em;
    font-size: 1.5em;
    font-family: 'Open Sans', sans-serif;
    width: 100%;   
}

#Content .fab {
    font: normal normal normal 30px FontAwesome;
    color: black;
}

#Content .fab:hover {
    color: blue;
}

#Content .fab:active {
    color: darkblue;
}

.Roles {
    padding-bottom: 0px !important;
    padding-top: 0 !important;
}

.Links {
    padding-top: 0px !important;
    margin-bottom: 0px !important;
}
/*----------------------------------------*/
/*----------Responsiveness----------------*/
@media only screen and (max-width: 600px) {
    * {
        box-sizing: border-box;
    }
    
    #c_TeamHead h2 {
        font-size: 2em;
    }
    
    #c_TeamHead h3 {
        font-size: 1em;
        padding-left: 0;
        padding-right: 0;
    }
    
    #c_TeamContent {
        padding-left: .5em;
        padding-right: .5em;
    }
    
    #TeamBlocks {
        width: 100%;
        padding-left: 0;
        padding-right: 0;
        margin-left: 0;
        margin-right: 0;
    }
    
    .Employee {
        width: 95%;
        height: auto;
    }
    
    .Employee img{
        width: 110px;
        height: 110px;
    }
    
    .Employee #Content {
        margin-top: 0;
    }
    
    .Employee #Content h2 {
        font-size: 1em;
    }
    
    .Employee #Content ul {
        font-size: .8em;
    }
    
    #Content .fab {
        font: normal normal normal 20px FontAwesome;
    }
}
/*----------------------------------------*/
/*--------------Games Page----------------*/
#Games {
    background: rgb(150,150,150);
}

#GameHeader {
    width: 100%;
    padding: 1em;
    background: whitesmoke;
    box-shadow: 0 0 16px black;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
}

#GameHeader h2 {
    width: 80%;
    text-align: center;
    margin-left: 20%;
    margin-right: 20%;
    font-size: 4em;
    color: #c04848;
    border-image-source: linear-gradient(to left, transparent, black, transparent);
    border-bottom: 1px solid;
    border-image-slice: 1;
    border-width: 2px;
}

#GameCollection {
    width: 100%;
    margin:auto;
    margin-top: 2em;
}

#GameCollection a{
    background-image: url(../../games/stoutheart/img/Stoutheart_CavernBackground.jpg);
    background-position: 50%;
    background-size: cover;
    width: 80%;
    height: 60vh;
    inset: -16px;
    margin: auto;
    z-index: 0;
}

#GameCollection a section {
    transition: .5s;
}

#GameCollection section h3 {
    width: 100%;
    background: black;
    color: whitesmoke;
    text-align: center;
}

section img {
    width: calc(80%);
    height: calc(auto);
    margin-left: 10%;
    /*margin-left: 20%;*/
    z-index: 4;
}

#GameCollection a:hover {
    opacity: 90%;
    box-shadow: 0 0 8px black;
}

@media only screen and (max-width: 800px) {
    
    #GameHeader h2 {
        font-size: 1.5em;
        margin-left: auto;
        margin-right: auto;
        width: 100%;
    }
    
    #GameCollection {
        margin-left: auto;
    }
    
    #GameCollection a {
        height: 40vh;
    }
    
    section img {
        margin-top: 20%;
    }
}