#title{
	text-shadow: 2px 1px 1px lime;
}
  #image {
	width: 200px;
  height: 200px;
  background-image: url('https://images.unsplash.com/photo-1611692397384-e28ba7c40daa?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=494&q=80');
    background-size: cover;
  background-repeat: no-repeat;
    box-shadow: 15px 25px 55px gray;}
    
 #rectangle {
	width: 500px;
  height: 200px;
   background: lightcyan
 }
#diamond {
	width: 100px;
  height: 100px;
  background-color: seagreen;
  transform: rotate(150deg);
}
  #square {
	width: 100px;
  height: 100px;
  background: linear-gradient(to bottom left, cyan, grey, lime);
}
#idk {
	width: 200px;
  height: 200px;
 background-image: url('https://c.tenor.com/u9XnPveDa9AAAAAM/rick-rickroll.gif');
    background-size: cover;
  background-repeat: no-repeat;
  transform: skewX(40deg);
  margin-left: 100px;
}  

#circle {
  width: 100px;
  height: 100px;
  background: #a6e089;
  border-radius: 50%
}

#triangle {
  width: 0;
  height: 0;
  border-left: 50px solid transparent;
  border-right: 50px solid transparent;
  border-bottom: 100px solid #4e8578;
}

 