@font-face {
    font-family: "URW Gothic";
    src: url("face/URWGothic-Book.ttf");
    font-style: normal;
}
@font-face {
    font-family: "URW Gothic";
    src: url("face/URWGothic-BookOblique.ttf");
    font-style: italic;
}
@font-face {
    font-family: "URW Gothic";
    src: url("face/URWGothic-Demi.ttf");
    font-style: normal;
    font-weight: bold;
}
@font-face {
    font-family: "URW Gothic";
    src: url("face/URWGothic-DemiObilque.ttf");
    font-style: italic;
    font-weight: bold;
}

body {
    overflow: hidden; position: static; height: 100%;
}

.ver strong {
    color: white;
    opacity: 0;
}

.ver strong:hover {
    color: black;
    opacity: 1;
}

.ver strong:after { /* version string here */
    content: "6-30 limited release.";
}

.navigation {
    position: fixed;
    width: 480px;
    margin-left: 32px;
    margin-top: 32px;
 /* border: 2px solid black; */
    height: 600px;
}
.navi-menu-item {
    text-align: justify;    
    font-size: 24px;
    background-color: white;
    margin: 8px auto 8px auto;
}
.navi-menu-item:hover {
    background-color: black;
    outline: 8px solid black;
}

.navi-menu-item a {
    text-decoration: none;
    color:black;
}
.navi-menu-item a:hover {
    color:white;
    filter: drop-shadow(0 0 1pt white);
}
.navifoot {
    text-align: justify;    
    font-size: 14px;
    background-color: white;
    margin: 12px auto 12px auto;
}

.matte {
    background-color: darkslategrey;
    position: fixed;
    margin-left: 600px;
    margin-top: 32px;
    width: 320px;
    height: 480px;
}

.info {
   position: relative;
/* background-color: red; */
   height: 60%;
   width: 80%;
   margin: 32px auto;
}

.info p {
    color: white;
    font-size: 24px;
    text-align: left;
    display: none;
}

.render {
    position: relative;
    height: 40%;
    width: 100%;
    display: none;
}
.render img {
    float: right;
    padding-right: 20px;
    transform: translate(0px, -10px); /* I can't figure out why 'padding-bottom' won't work here. TODO make this more compatible */
}

#cont {
    width: 80%;
    height: 90%;
    margin: 24px auto;
    font-size: 18px;
    color: white;
}
#cont iframe{
    border: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;

}

.selected {
    text-decoration: black dotted underline;
}
.selected:hover {
    text-decoration: white dotted underline;

}
.here:after {
    content: "(You are here.)"
}

/* default font appearance setup */
p {
    font-family: "URW Gothic";
    font-style: normal;
    font-weight: normal;
}
strong {
    font-family: "URW Gothic";
    font-style: normal;
    font-weight: bold;
}
em {
    font-family: "URW Gothic";
    font-style: italic;
    font-weight: normal;
}
strong em {
    font-family: "URW Gothic";
    font-style: italic;
    font-weight: bold;
}

/* animations */

.blurin {
    filter:blur(0);
    opacity: 100%;
    animation-name: blur-in;
    animation-iteration-count: 1;
    animation-timing-function: ease-in;
    animation-duration: .125s;
}

@keyframes blur-in {
    0% {
        filter:blur(16px);
        opacity: 0%;
    }
    100% {
        filter:blur(0);
        opacity: 100%;
    }
}

