/* <---------------------------------->*/
/* <----- Website Default Style ----->*/
/* <-------------------------------->*/
html {
    font-size: 20px;
    font-family: 'Roboto Slab', serif;
}

body {
    height: 100%;
    background: #161925;
}

main {
    background-color: #363946;
    width: 80%;
    margin: 0 auto auto auto;
    position: absolute;
    left: 0;
    right: 0;
    top: 5%;
    bottom: 0;
    height: 90vh;
}

#navMenu {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-content: center;
    
    width: 100%;
    height: 100%;
}

#navMenu a {
    width: 10vw;
    height: 80%;
    background-color: #AAABAF;
    color: black;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
    text-decoration: none;
    font-size: 1vw;
    margin-top: 0.5vh;
    margin-left: 1vw;
    margin-right: 1vw;
    font-weight: bolder;
    
    border-style: solid;
    border-color: rgba(0,0,0,0.5);
}

#navMenu a:hover {
    opacity: 1;
    background-color: #D3D4D9;
}

.active {
    animation: setFocused;
    animation-fill-mode: forwards;
    animation-duration: 0.5s;
}


@keyframes setFocused { 
    100% {
        background-color: rgba(0,0,0,0.1);
        height: 100%;
        border-style: none;
        border-left-style: solid;
        border-right-style: solid;
        border-color: rgba(0,0,0,0.2);
        font-size: 3vh;
        margin: 0 0 0 0;
    }
}

.headerContainer {
    height: 8vh;
    width: 80%;
    position: fixed;
    margin: auto;
    left: 0;
    right: 0;
    top: 0;
    background-color: #696773;
    z-index: 100;
    border-bottom-style: solid;
    box-shadow: 0vh 1vh 1vh rgba(0,0,0,0.1);
    border-bottom-width: 1vh;
    border-color: rgba(0,0,0,0.5);
}

.footerContainer {
    height: 3%;
    min-height: 30px;
    width: 80%;
    min-width: 100px;
    position: absolute;
    margin: 0 auto 0 auto;
    left: 0;
    right: 0;
    bottom: 0;
    top: calc(5% + 90vh);
    background: #696773;
    border-top-style: solid;
    border-top-width: 1vh;
    border-color: rgba(0,0,0,0.5);
    box-shadow: 0vh -1vh 1vh rgba(0,0,0,0.1);
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-content: center;
}

.footerContainer p {
    color: black;
    margin: auto;
    font-size: 1vh;
    text-align: center;
    border-left-style: solid;
    border-right-style: solid;
    border-color: rgba(0,0,0,0.2);
    border-width: 0.1vw;
    padding: 1vh;
}

.siteBlock {
    margin: auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}


/* <---------------------->*/
/* <----- index.html ----->*/
/* <---------------------->*/

#GameTitle {
    width: 25vw;
    height: auto;
    margin: 4vh auto auto auto;
    text-align: center;
    font-size: 6vh;
    color: rgba(255,255,255,0.9);
    background-color: rgba(0,0,0,0.2);
    text-shadow: 0.2vw 0px 1px gray;
    border-bottom-left-radius: 10vw;
    border-bottom-right-radius: 10vw;
}

#modeSelector {
    margin: 2vh auto auto auto;
    height: 65vh;
    width: 90%;
    background-color: rgba(0,0,0,0.8);
    background-image: url("../sprites/background.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 50% 50%;
}

#modeSelector div {
    z-index: 100;
    background: rgba(0,0,0,0.2);
    margin: 5vh auto auto auto;
    display: flex;
    flex-direction: column;
    width: 25vw;
    height: 45vh;
    border-color: rgba(0,0,0,0.5);
}

#modeSelector p {
    width: 100%;
    height: auto;
    text-align: center;
    font-size: 2.5vh;
    font-weight: bolder;
}
#modeSelector Button {
    width: auto;
    height: 6vh;
    margin: 1vh auto 1vh auto;
    background-color: black;
    border-color: gold;
    border-style: solid;
    cursor: pointer;
    outline: none;
    color: gold;
    font-size: 1.5vh;
    font-weight: bolder;
}

#modeSelector Button:hover {
    background-color: gold;
    color: black;
    font-size: 1.8vh;
}

/* <-------------------------->*/
/* <----- geschichte.html ----->*/
/* <-------------------------->*/

#storyHeader {
    color: white;
    font-size: 4vh;
    margin: 5vh auto auto auto;
}

#storyText {
    color: white;
    font-size: 3vh;
    width: 70%;
    height: auto;
}

/* <---------------------->*/
/* <----- team.html ----->*/
/* <-------------------->*/

.teamContainer {
    margin: 5vh auto auto auto;
    width: 35vw;
    height: 32vh;
    border-style: solid;
    border-color: rgba(0,0,0,0.6);
    background: rgba(0,0,0,0.1);
    box-shadow: 0vh 0vw 1vh black;
}

.teamContainerHeader {
    margin: auto;
    width: 100%;
    height: 3vh;
    text-align: center;
    background: rgba(0,0,0,0.6);
    color: white;
    font-size: 2vh;
}

.teamContainerFooter {
    width: 100%;
    height: 2vh;
    margin: auto;
    text-align: center;
    background: rgba(0,0,0,0.6);
    color: white;
    font-size: 1vh;
}

.teamContent {
    display: flex;
    flex-direction: row;
    height: 27vh;
    width: 95%;
    margin: auto;
}

.teamContent img {
    margin-top: 3vh;
    height: 80%;
    width: 30%;
    border-radius: 0%;
}

.teamBlock {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.teamTextJobContent {
    display: flex;
    flex-direction: column;
    margin: 3vh auto 0 auto;
}

.teamTextHeader:first-of-type {
    font-size: 1.5vh;
    color: darkgray;
    background-color: rgba(0,0,0,0.5);
    width: 18vw;
    text-align: center;
    margin: 0 auto 0 auto;
}


.teamTextHeader {
    font-size: 1.5vh;
    color: darkgray;
    background-color: rgba(0,0,0,0.5);
    width: 18vw;
    text-align: center;
    margin: 4vh auto 0 auto;
}

.teamTextJobContent hr {
    border-color: rgba(255,255,255,0.5);
    width: 18vw;
    margin: 0 auto 0 auto;
}

.teamTextJob {
    width: 100%;
    display: flex;
    flex-direction: row;
    margin: 0 auto 0 auto;
    justify-content: space-around;
}

.teamTextJob p {
    margin: 0 auto 0 auto;
    font-size: 1.2vh;
    background-color: rgba(255,255,255,0.2);
    width: 6vw;
    text-align: center;
}

.teamTextFazit {
    margin: 0 auto 0 auto;
    font-size: 1.2vh;
    background-color: rgba(255,255,255,0.2);
    width: 18vw;
    text-align: center;
}

/* <-------------------------->*/
/* <----- kreaturen.html ----->*/
/* <-------------------------->*/

#creature {
    overflow-y: scroll;
}

.mainCreatureContainer {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
}

.tinyIcon {
    height: 1vh;
    width: 0.5vw;
    margin-top: 0.5vh;
    margin-right: 0.5vw;
}

.creatureContainer {
    margin: 1vmin;
    width: 20vw;
    height: 20vh;
    background: rgba(0,0,0,0.2);
    display: flex;
    flex-direction: row;
    border: solid 1px;
}
.creatureImage {
    width: 10vw;
    height: 15vh;
    margin-top: 2vh;
}

.creatureTeamHeader {
    width: 15vw;
    height: 5vh;
    margin: 5vh auto auto auto;
    background: rgb(0,0,0,0.4);
    color: darkgray;
    text-align: center;
    vertical-align: middle;
    line-height: 5vh;
    font-weight: bolder;
    font-size: 3vh;
}
.creatureTeamHeader:last-of-type {
    margin: 1vh auto 0 auto;
}


.creatureInfo {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-content: center;
    height: 100%;
    width: 20vw;
}

.creatureInfo div {
    background-color: rgba(0,0,0,0.3);
    border-bottom-right-radius: 10vh;
    width: 6vw;
    height: 2vh;
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin: auto 0 auto 0;
}

.creatureInfo p {
    color: white;
    font-size: 1vh;
    line-height: 2vh;
    height: 3vh;
    width: auto;
    margin: auto 0.5vw auto 0;
}

/* <-------------------------->*/
/* <----- changelog.html ----->*/
/* <-------------------------->*/

#changelog {
    overflow-y: scroll;
}

#changelogList {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: auto;
    margin: 5vh auto auto auto;
}

.changelogPost {
    width: 60vw;
    height: 6vh;
    margin: 1vh auto auto auto;
    background-color: rgba(0,0,0,0.2);
    display: flex;
    flex-direction: row
}
.changelogPost hr {
    border-color: rgba(0,0,0,0.2);
    height: 100%;
    margin: auto;
}

.changelogPostDate {
    margin: auto 0 auto 0;
    width: 7vw;
    height: 100%;
    line-height: 425%;
    font-size: 1.5vh;
    color: gray;
    text-align-last: center;
    background-color: rgba(0,0,0,0.2);
}

.changelogPostType {
    margin: auto auto auto auto;
    width: 4vw;
    height: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
}

.changelogPostType p {
    width: 100%;
    margin: auto;
    font-size: 1vh;
    font-weight: bolder;
    opacity: 0.8;
}

.changelogPostText {
    margin: auto 0 auto 1vw;
    width: 40vw;
    font-size: 1.5vh;
    color: whitesmoke;
}

.changelogPostAuthor {
    margin: auto 1vw auto 0;
    width: 10vw;
    font-size: 1vh;
    text-align: right;
    color: rgba(255,255,255,0.1);
}