@font-face {
  font-family: "Orbitron";
  src: url(Orbitron-Regular.ttf) format("truetype");
}
body{
    background-image: url('ocflbackground.png');
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
    background-position: fixed;
    font-family: Verdana;
    font-size: 11px;
    color: #303a51;
    height: 100vh;
}
a, a:visited{
    color: #6ba6ff;
    text-decoration: none;
}
a:hover{
   font-style: italic; 
   cursor: help;
}
.container{
    position: fixed;
    left: 50px;
    top: 130px;
    width: 670px;
    height: 700px;
    display: grid;
    grid-template-columns: 20px 100px 570px;
    grid-template-areas: 'one two three';
}
.nav{
    grid-area: one;
    font-family: Orbitron, 'Arial';
    color: white;
    font-size: 19px;
    text-orientation: sideways-right;
    writing-mode: vertical-rl; 
    width: 20px;
    height: 500px;
    top: 50px;
    left: 50px;
    position: relative;
    word-spacing: 50px;
    
}
.window{
    position: fixed;
    left: 250px;
    width: 400px;
    height: 500px;
    background-color: rgb(245, 245, 245, 0.8);
    border: #bddaf8 solid 2px;
    border-radius: 10px 10px 10px 10px;
     grid-area: three;
}
.title{
    background-color: #7fb5ef;
    padding: 3px 0px 3px 3px;
    width: 397px;
    color: white;
    font-weight: bold;
    border-radius: 10px 10px 0px 0px;
    font-size: 14px;
}
.text{
    padding: 3px;
}
.textscroll{
    padding: 3px;
    overflow-y: scroll;
    overflow-x: hidden;
    height: 470px;
}
.stats{
    margin: 0px;
    padding: 5px 0px 5px 90px;
    border-top: dotted #6ba6ff 2px;
    border-bottom: dotted #6ba6ff 2px;
    text-align: left;
}
.title2{
    background-color: #7fb5ef;
    padding: 3px 0px 3px 3px;
    width: 397px;
    color: white;
    font-weight: bold;
    font-size: 14px;
    margin-top: 3px;
}
.divider{
    margin: 3px 0px 0px 0px;
    padding: 5px 0px 5px 0px;
    border-top: dotted #6ba6ff 2px;
    border-bottom: dotted #6ba6ff 2px;
    text-align: center;
    word-spacing: 15px;
}
#form{
    width: 350px;
    margin-top: 5px;
}
.parent{
    display: flex;
  width: auto;
  margin-left: 0px;
  grid-gap: 1px;
  padding: 1px 1px 1px 1px;
  z-index: 10;
  border-bottom: #6ba6ff dotted 2px;
}
.parent div{
  padding: 1px 2px 1px 2px;
}
.pictures{
    position: fixed;
    display: flex;
    flex-direction: column;
    gap: 10px;
    left: 120px;
    margin-top: 30px;
    grid-area: two;
}
.pictures img{
    border: #bddaf8 solid 2px;
    border-radius: 10px 10px 10px 10px;
     filter: grayscale(80%);
}
.pictures img:hover{
  filter:none;
  cursor: help;
}

.footer{
    position: fixed;
    left: 190px;
    z-index: -1;
    text-align: center;
    width: 490px;
    bottom: 50px;
}
