/* animations */

@keyframes scroll {
  100% {
    background-position: -10000px 10000px;
  }
}    

@keyframes upDown {
  50% {
  transform: translateY(3px);
    }
}

* { box-sizing: border-box; }

/* general skeleton */

html{ font-family: "determination";
    overflow-x: hidden;
    image-rendering: pixelated;
    }
    
body { 
    animation: scroll 300s linear infinite;
    background-image: url("images/tumblr_01d433bce68ccd20f1bffb52581a7310_d005d570_400.png");
    background-size: 60%;
    width: 100%;
    height: 100%;
    margin: 0;
	}

#topheader { 
      width: 100%;
      height: 10%;
      position: absolute;
      z-index: 4;
      background-image: url("images/tumblr_b04c87b058f72a00f63d472ff880291f_f30bc38a_400.png");
      background-repeat: repeat-x;
      background-size: 60%; 
      top: 0;
      left: 0;
    }

#topgradient { width: 100%;
    height: 100vh;
    background-image: linear-gradient(rgb(59,86,122) 10%, rgba(255,255,255,0));
    margin: 0;
    position: absolute;
    z-index: -1;
    top: 0;
    }

#bottomfloor {
    width: 100%;
    height: 80px;
    background-image: url("images/floortile2.png");
    background-repeat: repeat;
    position: absolute;
    z-index: -1;
    border-top: 5px solid #547580;
    
    }

#wrapper {
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
    /* margin-top: 100px; */
    }

header{
    font-size: 5vw;
    text-align: center;
    color: white;
    margin-top: 5vh;
    margin-bottom: 2vh;
    animation: upDown 1s infinite alternate linear;
    }
    
nav {
    background-color: black;
    border: 3px white double;
    color: white;
    text-align: center;
    margin: 10px auto;
    width: 750px;
    }

nav ul { 
    display: flex;
    flex-flow: row nowrap;
    gap: 2em;
    list-style-type: none;
    align-items: center;
    justify-content: center;
    padding-left: 0;
    }

a {
   color: white;
   text-decoration: none;
   }  

a:hover {
   font-weight: bold;
   cursor: pointer;
   }  

.pageLink:hover {
   font-weight: bold;
   text-decoration: underline;
   cursor: pointer;
   }  
   
.page { 
    display: none; 
    padding: 0;
    margin: 0;
    width: 800px;       
    justify-content: center;
    overflow-x: hidden;
    }   
    
.defaultOpen { 
    display: block;
    }
    
#container { 
    min-height: 800px;
    max-width: 800px;
    display: flex;
    background-color: black;
    border: 3px white double;
    color: white;
    padding: 20px;
    margin: 25px 50px;
    }
    
#container p{ margin: 0; }
    
#miketroduction {
    text-align: center;
    }

#mikebox{ 
    width: 100%;
    display: flex;
    flex-flow: row wrap;
    gap: 1em;
    justify-content: center;
    }

.mike{ 
    display: flex;
    flex-flow: column nowrap;
    margin-top: auto;
    }
.mike > img{ margin-bottom: 1em; }

#pollcode {
    background-color:#000000;
    padding:1px;
    width: 180px;
    font-family: Comic Sans MS;
    font-size:small;
    color:#FFFFFF;
    border: 1.5px solid white;
    margin: 10px;
}

.navList{
    list-style-type: none;
    }

li{
    list-style-type: "•  ";
    }

sup{
    color: red;
}

.warning {
    list-style-type: "⚠  ";
    }

.floatie{
    max-width: 100px;
    float: right;
    }

#floattat img{
    margin: 10px 20px 10px 0px;
    }    

#floatongler img{
    margin: 0px 20px 10px 0px;
    }    

/* #floatuey img{
    margin: 10px 20px 10px 0px;
    }   */ 

#pluey_mobile {
    display: none;
    max-width: 120px;    
    }

.friend {
    margin: 10px 0px;
    z-index: 6453;
    }    
.friend:hover{ cursor: grab; }

#acidbattat {
    width: 116px;
    height: 104px;
    position: absolute;
    right: 9em;
    bottom: -36.3em;
    }
#acidbattat:hover{ 
    content: url("images/battatacid-angry.png"); 
    }

#jongler {
    position: absolute;
    left: 11em;
    bottom: -36em;   
    }

#jongler:hover {
    bottom: -35.65em;
    content: url("images/jongler-shy.png");
    }
    
#mikejongler {
    position: absolute;
    left: 11em;
    bottom: -27em;
    }    
    
#mikebattat {
    position: absolute;
    right: 13em;
    bottom: 8.7em;
    scale: 90%;
    } 

#yarnpluey {
    position: absolute;
    right: 8.2em;
    bottom: -30em;
    } 
#yarnpluey:hover{
    bottom: -29.65em;
    content: url("images/plueyyarn-shy.png");
    }

#mikereal {
    position: absolute;
    right: 0em;
    bottom: -30em;
    scale: 90%;
    }
  
#closet {
    margin: 10px;
    margin-top: 100px;
    text-align: center;
    }

#closet img{
    min-width: 100px;
    }
  
footer {
    text-align: center;
    margin-bottom: 20px;
    margin-top: 20px;
    }
  
/*tooltips*/

    .tooltip {
      cursor: pointer;
    }

    .tooltip-content {
      position: absolute;
      display: none;
      padding: 10px;
      font-size: 12px;
      line-height: 1.3em;
      z-index: 999;
      margin-top: 10px;
      max-width: 400px;
      border: 3px double white;
      z-index: 9999;
      background-color: black;
    }
      
/*RESPONSIVE*/
@media only screen and (max-width: 600px) {
	nav{
		width: 90%;
	} 
    nav ul {
        display: flex;
        flex-flow: row wrap;
        gap: 2em;
        list-style-type: none;
        align-items: center;
        justify-content: center;
        padding-left: 0;
        }
        
    #container{
        max-width: 90%;
    }
    
    footer{ 
        max-width: 90%;
        margin: auto;
    }
    .friend{
        display: none;
    }  
    
    #pluey_mobile{
        display: block;
    }        
}        