/*font*/
@import url(https://fonts.bunny.net/css?family=pixelify-sans:400);

/*notebook from ribo.zone!!!*/
.book {
  border: 7px solid #641491;
  background-color: white;
  border-radius: 15px;
  padding: 4px;
  width: 500px; 
  aspect-ratio: 3 / 2;
  display: flex;
  margin-right: 20%;
  margin-top: 30px;
  margin-left: 50px;
  margin-bottom: 100px;
}
.pageL,	.pageR {
  height: 100%;
  width: 50%;
  display: inline-block;
  position: relative;
  border-radius: 10px;
}
.imgtxt {
  width: fit-content;
  height: fit-content;
  display: inline-block;
  position: relative;
}
.imgtxt span {
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 99;
  font-size: 10px;
  color: #FFF;
  filter: drop-shadow(1px 1px 0 black) 
    drop-shadow(-1px 1px 0 black)
    drop-shadow(1px -1px 0 black)
    drop-shadow(-1px -1px 0 black);
}
.imgtxt:hover span, .imgtxt:focus span {
  opacity: 1;
}
.imgtxt:hover img, .imgtxt:focus img {
  /* add hover effects like transform or filter to your images here! */
}
	

.pageL {
  border-left: 1px #641491 solid;
}
.pageR { 
  border-right: 1px #641491 solid;
}
.seam {
  width: 7px;
  background:
    linear-gradient(to right,
    white, #a05bc7, white);
}


/* header stuff */
.header {
  text-align: center;
  padding: 50px;
  font-size: 16px;
}
/*  background stuffs and cursor  */
body{
  background-image: url('https://sadhost.neocities.org/images/tiles/fondo_purplestars.gif');
  background-attachment: fixed;
  color: #641491;
  cursor: url('http://www.rw-designer.com/cursor-view/197286.png') 5 10, default;
  cursor: url('http://www.rw-designer.com/cursor-view/197285.png') 5 10, hand;
}
/*link colour*/
 a {
  color: #4726b5;
}
a:hover {
  color: #3700ed;
  cursor: url('http://www.rw-designer.com/cursor-view/197285.png') 5 10, pointer;
}
/*for image window*/
.window {
    border: 2px groove #b25de3;
    background: lavender;
    padding: 4px;
    box-shadow: 4px 4px rgba(80,20,255,0.2);
    padding-bottom: 0;
    max-width: 250px;
    max-height: 400px;
    margin-left: 100px;

}
.windowbox {
    
    max-width: 250px;
    max-height: 400px;
    overflow: hidden;
}
.windowbox :img{
   width: 250px;
}
.window .title {
    border: 1px solid #b25de3;
    background: lavender;
    color: purple;
    font-weight: bold;
    height: 22px;
}

/*  sidebars n stuff  */
.row {
  display: flex;
  flex-wrap: nowrap;
  font-size: 13px;
  margin-bottom: 100px;
}

.left {
  flex: 25%;
  padding: 20px;
}


.main {
  flex: 50%; 
  padding: 20px;
  height: 500px;
}
.right {
  flex: 25%;
  padding: 20px;
}

.footer {
  padding: 40px; 
  padding-bottom: 10px;
  text-align: center;
}
.moving :hover {
margin-top:0px;
    animation-name: move;
    animation-duration: 1s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    box-shadow: 10px 10px 20px #7532a8;
}
.taped::before {
  background-image:url('https://hillhouse.neocities.org/_images/stickers/tape/hillhousepink.png');
  background-repeat:no-repeat;
  display:block;
  content:" ";
  position:absolute;
  height:50px;
  width:150px;
background-size:contain;
  top:-20px;
  left:40%
}


/*move on hover thing*/

@keyframes move {
    0% {
        transform: translateY(25%);
    }

    100% {
        transform: translateY(-25%);
    }
}



/*status cafe things*/
@media screen and (max-width: 400px) {
  .navbar a {
    float: none;
    width: 100%;
  }
}
#statuscafe {
    padding: 0.5em;
    background-color: transparent;
    border: none;
    position: absolute;
    margin-top: 335px;
    z-index: 2;
    margin-left: -50px;
    font-size: 11px;
}
#statuscafe-username {
    margin-bottom: .5em;
}
#statuscafe-content {
    margin: 0 1em 0.5em 1em;
}
/*font stuf*/

*{
	font-family: 'Pixelify Sans';
}
/* mouse stuf, i forgot where i got it from */
::-webkit-scrollbar {
  width: 20px;
}


::-webkit-scrollbar-track {
  background: #5e1182;
    box-shadow: inset 0 0 5px #270138;
}
 

::-webkit-scrollbar-thumb {
  background: #964fb8;
      box-shadow: inset 0 0 5px #270138;
}


::-webkit-scrollbar-thumb:hover {
  background: #682985; 
      box-shadow: inset 0 0 5px #270138;
}