@font-face {
     font-family: "NeonSans";
     src: url("https://thepasteldyke.neocities.org/misc/fonts/NeonSans.ttf") format("truetype"); 
}

@font-face {
     font-family: "Thirteen-Pixel-Fonts";
     src: url("https://thepasteldyke.neocities.org/misc/fonts/Thirteen-Pixel-Fonts.ttf") format("truetype"); 
}

@font-face {
     font-family: "TitilliumWeb-Light";
     src: url(/misc/fonts/TitilliumWeb-Light.ttf) format("truetype");
}

@font-face {
     font-family: "GLAMOURGIRL";
     src: url(https://thepasteldyke.neocities.org/misc/fonts/GLAMOURGIRL.TTF) format("truetype");
}


/* body */

body {background:
url(https://thepasteldyke.neocities.org/misc/backgrounds/music%20bg%20pink%20250px.png);
background-position: center;
cursor: url(https://thepasteldyke.neocities.org/misc/cursors/music%20note%20blue.png), auto !important;}


/* EVERYTHING TEXT STYLING */

a {
cursor: url("https://thepasteldyke.neocities.org/misc/cursors/Pink%20neon%20glass%20Move.cur"), default;
}

a img {
cursor: url("https://thepasteldyke.neocities.org/misc/cursors/Pink%20neon%20glass%20Move.cur"), default;
}


h4 {
  font-size: 12px;
  text-align: center;
  font-family: TitilliumWeb-Light;
  margin-top: -6px;
}

h6 {
  font-size: 20px;
  text-align: center;
  font-family: Thirteen-Pixel-Fonts;
  margin-top: 5px;
  margin-bottom: 5px;
}

p {color: white;}

a.one:link, a.one:visited {
  color: #8B0050;
  text-decoration: none;
  display: inline-block;
  font-weight: bold;
  font-family: TitilliumWeb-Light;
}

a.one:hover, a.one:active {
  color: #FF6AC0;
  webkit-filter: blur(4px); /* Chrome, Safari, Opera */
  filter: blur(2px);
}


a.six:link, a.six:visited {
    color: #FDCD08;}
    
a.six:hover, a.six:active {
  color: #ffffff;}

a.seven:link, a.seven:visited {
    color: #ffffff;
  text-shadow: 2px 2px 2px #0033EF;
  font-size: 30px;
  text-decoration: none;
  line-height: 10px;
  display: inline-block;
  font-weight: bold;
  font-family: GLAMOURGIRL;
  padding: 0px 5px 0px 2px;
} 

a.seven:hover, a.seven:active {
  color: #ffffff;
  transform: scale(1.4); 
   transform-origin: center left;
  text-shadow: 2px 2px 2px #0033EF;
}

  a.eight:link, a.eight:visited {
    color: #ffffff;
  text-shadow: 2px 2px 2px #0033EF;
  font-size: 40px;
  text-decoration: none;
  text-align: center;
  line-height:10px;
  display: inline-block;
  font-weight: bold;
  font-family: GLAMOURGIRL;
  background-image: url();
  background-repeat: no-repeat;
  padding: 0px 5px 0px 2px;
  width: 70px;
}

a.eight:hover, a.eight:active {
  color: #ffffff;
  transform: scale(1.8); 
  text-shadow: 2px 2px 2px #0033EF;
}

/* EVERYTHING ANIMATED + IMAGES */
.image8 {width: 90%;
display: block;
margin-left: auto;
margin-right: auto;
}

.grow { 
transition: all .2s ease-in-out;
filter: grayscale(100%);
}

.grow:hover { 
transform: scale(1.1); 
filter: none;
}






.menu { 
  grid-area: menu;  
  margin-top: 10px;
  padding: 0px; 
}

.menu2 { grid-area: menu2;
   margin-top: 52px;
   margin-left: 20px;
  padding: 0px; 
align: center;
width: 60px;
}

.main { grid-area: main;
  background-color:  rgba(255, 255, 255, 0.7);
  box-shadow: inset -1px -1px #0E22A7, inset 1px 1px #CFF9FF,
  inset -2px -2px #0033EF, inset 2px 2px #fff;
  border: 2px solid white;
  border-radius: 0px;
  margin-top: 20px;
  margin-bottom: 20px;
  margin-left: 20px;
  padding: 20px;
  height: 780px;
  overflow: auto;
}

.scrollboxmain {
  width: 100%;
  height: 99%;
  padding: auto;
  margin: auto;
  overflow: auto;
  text-align: center;
}


.artbubble { grid-area: artbubble; 
  height: 10px; 
  padding: 0px;
  margin-top: 0px;
  margin-left: 50px;
  animation-name: floating;
  animation-duration: 3s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
  transform: rotate(10deg);
}

/* SQUISH ANIMATION */
   #squish {transform: rotate(-3deg); position: absolute; transition: 0.4s; pointer-events: auto;z-index: 99;}
#squish:hover {animation: gelatine 0.5s infinite;}

@keyframes gelatine {
from, to { transform: scale(1, 1); }
  25% { transform: scale(0.9, 1.1); }
  50% { transform: scale(1.1, 0.9); }
  75% { transform: scale(0.95, 1.05); }

}

.footer { grid-area: footer;
  width: 100%;
  min-width: 500px;
  max-width: 800px;
}


.grid-container {
  display: grid;
  grid-template-columns: 80% 10% 10%;
  grid-template-areas:   
    ' main menu menu2'
    ' main artbubble artbubble'
    'footer artbubble artbubble';
  gap: 10px;
  padding: 10px;
  max-width: 1000px;
}

.grid-container > div {
}