 /*------fonts------*/
            
            @font-face {
                font-family: Neuropol;
                src: url('/graphics/fonts/neuropol.ttf');
            }
            
             @font-face {
                font-family: OldEarth;
                src: url('/graphics/fonts/oldearth.ttf');
            }
            
            @font-face {
              font-family: Cutebaby;
              src: url('/graphics/fonts/Cutebaby.ttf');
            }
         
/*------body------*/


div {
    cursor:url("/graphics/lipscursor.png"),auto;
    }   
  
  body {        
                font-family: verdana;
                background-color: #ff5aa1;
                margin: 0 auto;
                background-image: url('graphics/pinkfur.jpg');
            }

            * {
                box-sizing: border-box;
            }
            
h1 {
  color: black;
  text-shadow: 1px 1px 1px red;
  text-align: center;
}

/*subhead*/
h2 {
  color: black;
  text-shadow: 1px 1px 1px red;
  text-align: center;
}

/*main text*/
p, ul {
  text-align: center;
  
  padding: 1em;
color: black;
line-height: 1.5;
}


/*------the containerrr------*/
 
 #container {
  max-width: 900px;
  margin: 0 auto;
 }
 
 .navcontainer {
  
  width: 800px;
  max-width: 95%;
  font-family: 'Cutebaby';
  text-align: center;
  font-size: 70px;
  color: white;
  text-shadow: 2px 2px red;
 }
 
 /* unvisited link */
.navcontainer a:link {
  color: black;
  text-shadow: 2px 2px red;
  text-decoration: none;
}

/* visited link */
.navcontainer a:visited {
  color: black;
  text-shadow: 2px 2px red;
   text-decoration: none;
}

/* mouse over link */
.navcontainer a:hover {
  color: red;
  text-shadow: 2px 2px red;
   text-decoration: none;
}

/* selected link */
.navcontainer a:active {
  color: black;
  text-shadow: 2px 2px red;
   text-decoration: none;
}
            
            
            
/*------the headerrr the footerrr the navbarrr------*/
          
              .header {
                background: transparent;
                width: 890px;
                height: 200px;
                max-width: 90%;
                font-family: 'OldEarth';
                padding: 70px 0px 0px 0px;
                font-size: 100px;
                margin: 0 auto;
                color: white;
                text-align: center;
                text-shadow: 8px 8px 8px red;
                
              }
              
            .navbar {
              background-color: #ff006e;
              border: 3px solid white;
              outline: 2px solid #a7f2ff;
              border-radius: 5px;
              box-shadow: 10px 10px red;
              color: white;
              text-shadow: -2px -2px 0 red, 2px -2px 0 red, -2px 2px 0 red, 2px 2px 0 red;
              width: 856px;
              font-family: 'OldEarth';
              text-align: center;
              margin: 20px auto;
              font-size: 40px;
              padding: 20px;
            }
              
              .footer{
                
                width: 875px;
                max-width: 100%;
                border-radius: 5px;
                height: 40px;
                padding: 10px;
                background-color: #ff006e;
                color: white;
                text-align: center;
                font-family: 'Neuropol';
                margin: 20px auto;
              }
              
            
/*------The GRID------*/

.gridcontainer {  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1.5fr;
  gap: 0px 0px;
  grid-auto-flow: row;
  grid-template-areas:
    "Content";
    background-color: white;
    outline: 2px solid #a7f2ff;
    border-radius: 5px;
    padding: 20px;
    margin: 20px auto;
    max-width: 95%
}

.Content { grid-area: Content; 

margin: 10px auto;
width: 800px;
max-width: 100%;
padding: 20px;
overflow-Y: auto;
overflow-X: auto;
text-align: center;
  }
  
  .Content img{
    margin: 0 auto;
    }

/*------media magic------*/

img{
   max-width: 100%;
   }            

/*------zoom------*/

.zoom {
  padding: 0 4px;
  background-color: transparent;
  transition: transform .3s; /* Animation */
}

.zoom:hover {
  transform: scale(2); /* (150% zoom - Note: if the zoom is too large, it will go outside of the viewport) */
}


/*------font magic------*/

.fun-font-1 {
  font-family: 'Cutebaby';
    font-size: 40px;
    font-weight: bold;
    color: #ff006e;
    text-shadow: 3px 3px red;
}

.fun-font-2 {
    font-size: 25px;
    color: #ff006e;
    font-family: 'Cutebaby';
}

 /*------LINKS------*/

 /* unvisited link */
.Content a:link {
  color: #ff006e;
}

/* visited link */
.Content a:visited {
  color: #ff006e;
}

/* mouse over link */
.Content a:hover {
  color: #a7f2ff;
}

/* selected link */
.Content a:active {
  color: #ff006e;
}

/*------(navbar links)------*/

/* unvisited link */
.navbar a:link {
  color: white;
  text-shadow: -2px -2px 0 red, 2px -2px 0 red, -2px 2px 0 red, 2px 2px 0 red;
  text-decoration: none;
}

/* visited link */
.navbar a:visited {
  color: white;
  text-shadow: -2px -2px 0 red, 2px -2px 0 red, -2px 2px 0 red, 2px 2px 0 red;
   text-decoration: none;
}

/* mouse over link */
.navbar a:hover {
  color: black;
  text-shadow: -2px -2px 0 red, 2px -2px 0 red, -2px 2px 0 red, 2px 2px 0 red;
   text-decoration: none;
}

/* selected link */
.navbar a:active {
  color: white;
  text-shadow: -2px -2px 0 red, 2px -2px 0 red, -2px 2px 0 red, 2px 2px 0 red;
   text-decoration: none;
}

/*------CUCKMODE (mobile)------*/


@media only screen and (max-width: 800px) {
  
  #container {
    width: 100%;
    height: auto;
    margin: 0 auto;
  }
  
     .navbar {
       width: 95%;
       margin: 0 auto;
     }
     
     .header {
       width: 100%;
       margin: 0 auto;
       font-size: 100px;
     }
     
     .gridcontainer {  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1.5fr;
  gap: 0px 0px;
  grid-auto-flow: row;
  grid-template-areas:
    "Content";
    background-color: white;
    outline: 2px solid #a7f2ff;
    border-radius: 5px;
    padding: 20px;
    margin: 20px auto;
    max-width: 95%
    
}

.Content { grid-area: Content; 

width: 600px;
max-width: 100%;
padding: 10px;
text-align: center;
margin: 0 auto;
  }
  
  
@media only screen and (max-width: 700px) {
  
  #container {
    width: 100%;
    height: auto;
    margin: 0 auto;
  }

     
     .gridcontainer {  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1.5fr;
  gap: 0px 0px;
  grid-auto-flow: row;
  grid-template-areas:
    "Content";
    background-color: white;
    outline: 2px solid #a7f2ff;
    border-radius: 5px;
    padding: 20px;
    margin: 20px auto;
    max-width: 95%;
    
}

.Content { grid-area: Content; 

width: 350px;
max-width: 100%;
padding: 10px;
text-align: center;
margin: 0 auto;
  }
     
    
     
     .navbar {
       width: 100%;
       margin: 10 auto;
       font-size: 25px;
     }
     
     .header {
       width: 100%;
       margin: 0 auto;
       font-size: 80px;
  }
}


@media only screen and (max-width: 500px) {
  
  #container {
    width: 100%;
    height: auto;
    margin: 0 auto;
  }

     
     .gridcontainer {  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1.5fr;
  gap: 0px 0px;
  grid-auto-flow: row;
  grid-template-areas:
    "Content";
    background-color: white;
    outline: 2px solid #a7f2ff;
    border-radius: 5px;
    padding: 20px;
    margin: 20px auto;
    max-width: 95%;
    
}

.Content { grid-area: Content; 

width: 350px;
max-width: 100%;
padding: 10px;
text-align: center;
margin: 0 auto;
  }
     
    
     
     .navbar {
       width: 100%;
       margin: 10 auto;
       font-size: 25px;
     }
     
     .header {
       width: 100%;
       margin: 0 auto;
       font-size: 80px;
  }
}
}