/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

/* main body and site */

p {
    text-align: center;
    font-size:20px;
    letter-spacing: -1px;
}
h1 {
  font-family:dream;
}


h2 {
    text-align: center;
    background: linear-gradient(blue, green);
-webkit-background-clip: text;
font-family:dream;
-webkit-text-fill-color: transparent;
 filter: drop-shadow(0px 0px 1px #FFFFFF) drop-shadow(0px 0px 1px #FFFFFF) drop-shadow(0px 0px 1px #FFFFFF) drop-shadow(0px 0px 1px #FFFFFF) drop-shadow(0px 0px 1px #FFFFFF) ;
}

body {
  background-color: transparent;
  font-family:paper;

}

/* text & font stuff */
mark {
  background: lightblue;
  }

/* unvisited link */
a:link {
  color:  #ffa6f8;
  text-decoration:none;
   text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
}
a:visited {
  color:  #ffa6f8;
  text-decoration:none;
}

/* mouse over link */
a:hover {
  color: white;
  text-decoration: underline;
}

ul {
   text-align: left;
    font-family:paper;
    font-size:20px;
    
}

li {
    text-shadow: 2px 2px 8px #FFF;
}

::selection {
  background: #ffa6f8;
    color:white;
}

/* for span class */
.fancy {
 font-size:20px; 
 font-weight: bold;
 color:#000;
 text-shadow: 2px 2px 2px #A3F0FF;
}


/* fonts, links and selection */
 @font-face { 
   font-family: paper;
   src: url('fonts/kindergarten.ttf'); 
   }
    @font-face { 
   font-family: paperb;
   src: url('fonts/coco.ttf'); 
   }
   
       @font-face { 
   font-family: dream;
   src: url('fonts/nemo.ttf'); 
   }

.tippy-tooltip.custom-theme {
    background-color: black;
    color: white;
  text-align:center;
    font-family:paper;
    font-size:20px;
  
}

.tippy-tooltip.custom-theme .tippy-svg-arrow {
  fill: transparent;
}


/* for weekly img */
.ugh {
   width:200px;
 height:200px;
 -webkit-transition-property: all; 
-webkit-transition-duration: 0.3s; 
-webkit-transition-timing-function: ease; 
}

 .ugh:hover { 
transform: scale(1.5); 
}

/* img resizing  */

.fun {
 width:20px;
 height:20px;
}

.omg {
 width:45%;
}

/* img rotating  */
.rotate {
  animation: rotation 5s infinite linear;
}


@keyframes rotation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(359deg);
  }
}

/* width. . .stuff for scrollbar */
::-webkit-scrollbar {
  width: 5px;
}

/* Track */
::-webkit-scrollbar-track {
  background: transparent; 
}
 
/* Handle */
::-webkit-scrollbar-thumb {
  background: #ffa6f8; 
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #000000; 
}


