/* 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." */

body {
  background-color: black;
  background-image: url( '/star-4773.gif');
  color: white;
  font-family: Impact;
  perspective: 500px;
}
a {
  color:pink;
  text-decoration:none;
}
.movable-text:hover{
  transform: translateY(3px);
}
div{
  display: inline-block;  
}
ul{
  list-style-type:none;
}
li::before{
  content: '';
  display: inline-block;
  background-image: url('https://media2.giphy.com/media/v1.Y2lkPTc5MGI3NjExMTB4aXRsYXBreWVhbDFhajcyaG8zenNxdTBnbHoxZWwwZTV6cGF4eCZlcD12MV9pbnRlcm5hbF9naWZfYnlfaWQmY3Q9cw/d3MMkIkkRZMmSktW/giphy.gif');
  background-repeat: no-repeat;
  background-position: center;
  width: 25px;
  height: 25px;
  background-size: contain;
}
.sidenav{
  width: 160px;
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  background-color: none;
  overflow-x: hidden;
}
.center{
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 25%
}
#intro{
  box-shadow: 0px 0px 20px 0px pink;
  margin-top: 30px;
  height: 200px;
  width: 200px;
  background-image: url('/pinkmemo.png');
  background-size: cover;
  background-position: center;
  grid-area: intro;
  border: 2px solid rbg(249,194,203);
  line-height: 26px;
  font-size: 18px;
  scrollbar-color: #df8db2 #b5d9f4;
  transition-duration: 0.5s;
}
#intro .inner{
  overflow: auto;
  margin: 50px 80px 50px 100px;
  height: 200px;
}
#intro:hover{
  box-shadow: 0px 0px 20px 10px pink;  
}
