{
  box-sizing: border-box;
}

body {
  background-image: url(https://averagegrl.neocities.org/graphics/wh%20ch.gif);
  padding-top:20px;
  cursor: url(https://averagegrl.neocities.org/graphics/nyan.png), auto;
  font-family: Verdana, sans-serif;
}
a {
    color: black;
  }
a:hover {

  cursor: url(https://averagegrl.neocities.org/graphics/hand.png), auto;
    color:hotpink;
}

.scroller {
   overflow-y: scroll;
  scrollbar-color: hotpink black;}

.parent {
display: grid;
grid-template-columns: repeat(2, 1fr);
grid-template-rows: 1fr;
grid-column-gap: 15px;
grid-row-gap: 0px;
}

.div1 { grid-area: 1 / 1 / 2 / 2; }
.div2 { grid-area: 1 / 2 / 2 / 3; }

 #spiral {
  position: absolute;
   left:755px;
   top:80px;
  filter: drop-shadow(3px 3px 3px hotpink);
}

#girl {
  position: absolute;
   right:250px;
   bottom:100px;
}

#keychain {
  position: absolute;
   right:210px;
   top:60px;
}

#butterfly {
  position: absolute;
   left:210px;
   top:340px;
}






