@import url('https://fonts.googleapis.com/css?family=Shadows+Into+Light+Two');

* {
    box-sizing: border-box;
}

html, body {
    margin: 0;
	height: 100%;
}

body {
    background-size: cover;
}

#console-wrapper {
	background: rgba(0,0,0,0.1);
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: start;
}

#console {
    list-style-type: none;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    width: 100%;
    max-height: 100vh;
    max-width: 1200px;
    margin: 0;
    padding: 30px;
    white-space: pre-wrap;
}

#console > li {    
    /* margin-bottom: 5px; */
    animation: fadein 1s;
}

@keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

#console > li.faded {
    /*animation: fadeout .2s;*/
    animation: none;
    opacity: .25;
    filter: grayscale(100%);
    /*transition: opacity 1s, filter 1s;*/
}

#console .center {
    text-align: center;
}

#console ul {
    list-style-type: none;
}

#console ul.list-columns {
    columns: 3;
}

#console .compass-rose {
    background: url("../img/compass_rose.svg") no-repeat center center;
    background-size: 150px;
    margin-top: 25px;
}

#console .rose-center-wrapper {
    display: flex;
    justify-content: stretch;
    align-items: center;
}

#console .rose-west {
    text-align: right;
    flex: 1;
}

#console .rose-east {
    flex: 1;
}

#console .rose-center {
    width: 106px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#map {
    position: absolute;
    display: none;
    background: url("../img/map.png");
    background-size: cover;
    width: calc(100vw - 10rem);
    max-width: 1280px;
    overflow: hidden;
    height: calc(80vh - 4rem);
    padding: 2rem 10rem;
    margin: 2rem 5rem;
    opacity: 1;
    z-index: 100;
}

.legend {
    padding-left: 15px;
	opacity: .4;
    filter: invert(1) brightness(1);
}

.keyboard-key {
    color: white;
    background: #292929;
    border-radius: 7px;    
    padding: 0 10px;
    margin: 0 3px;
    border: 2px solid white;    
    line-height: 1.7em;
    font-family: sans-serif;
}