/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

@font-face {
font-family: SuperKindly;
src: url(fonts/SuperKindly.ttf);
}
body {
    background-image: url(imgs/backgroundbluestars.gif);
       overflow: visible;
       max-height: max-content;
}
.container{

             
         width: 750px;
       
         margin: 0 auto;  
         height: 1500px;
         overflow: visible;
         /*display: grid;
         grid-gap: 10px;
         grid-template-columns: 200px minmax(0, 1fr);*/
        
       
      
     
}
header{
   line-height: 13px;
   font-family: "SuperKindly","DynaPuff", Arial, Helvetica, sans-serif;
   text-align: center;
   
}
h2{
    
    font-family:"VT323",Arial, Helvetica, sans-serif;
    font-size: larger;
    margin-top: 10px;
    line-height: 0;
}

h3{
    font-family: "VT323",Arial, Helvetica, sans-serif;
     font: size 23px;
     margin-top:10px;
     margin-bottom:0px;
}

nav{

     float: left;
     width: 160px;
      /*grid-column: 1 / 2;*/
     border-width:8px;
     padding: 5px 0px 5px 5px;
    
     border-style:solid;
     border-image: url("https://dl.dropbox.com/s/v8iy6a8feyq041p/blue%20ver.png") 8 fill round;         
     height:max-content;
     background-color:  rgb(199, 228, 253);
     top: 1em;
     position:-webkit-sticky;
     position: sticky;
     
      
     
     
}


main{
   float: right;
   width: 535px;
    /*grid-column: 2 / 3;*/
    
     padding: 5px;
    
      border-width:8px;
      border-style:solid;
      border-image: url("https://dl.dropbox.com/s/v8iy6a8feyq041p/blue%20ver.png") 8 fill round;         
      height:fit-content;
      background-color: rgb(199, 228, 253);
}

p{
    
    font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-optical-sizing: auto;
    font-weight: weight;
}
ul li::marker{
    content:none;
}
ul{
   
     padding: 0;
     margin-bottom: 0;
     margin-top: 0;
}
li{
    
     line-height: 25px;
  
}

a{
   
     color: black;
     text-decoration: none;
     font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
     font-size: medium;
}

a:hover {
  color: rgb(0, 192, 225);
  /*font-style: italic;*/
  
}

.pop {
font-size:50px;
font-style: normal;

   
 color: rgb(0, 192, 225);
text-align:center; /* looks weird often if not aligned in center */
-webkit-animation: pop 4s ease-in-out infinite alternate;
-moz-animation: pop 4s ease-in-out infinite alternate;
animation: pop 4s ease-in-out infinite alternate;
}

@keyframes pop {
from { transform:scale(0.95) }
50% { transform:scale(1) }
to { transform:scale(0.95) }
}

@-webkit-keyframes pop {
from { -webkit-transform:scale(0.95) }
50% { -webkit-transform:scale(1) }
to { -webkit-transform:scale(0.95) }
}


.Steckbrief{
     
    /*background-color: blue;*/
    display: grid;
   
    grid-template-columns: 150px minmax(0, 1fr);
}
.photobox{
grid-column: 1 / 2;
 margin: 5px;
}
.textbox{
grid-column: 2 / 3;
 margin: 5px;
}
