body{
	font-size:20px;
  width: 1000px;
  height: 1500px;
}

#front{
  mix-blend-mode: multiply;
  position:absolute;
  display:flex;
  flex-direction:row; 
  flex-wrap:wrap;
  justify-content:center;
  
}

#back{
  mix-blend-mode: multiply;
  position:fixed;
  display:flex;
  flex-direction:row; 
  flex-wrap:wrap;
  justify-content:center;
  
}
/* 
.circle{
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display:inline-block;
  background-color:yellow;
  padding:20px;
  margin:50px;
  -webkit-transition: background-color 2s ease-out;
  -moz-transition: background-color 2s ease-out;
  -o-transition: background-color 2s ease-out;
  transition: background-color 2s ease-out;
} */
.circle{
background-color:yellow;
display: inline-block;
width: 100px;
  height: 100px;
  border-radius: 50%;
  display:inline-block;
/*transform: rotate(-80deg);
width: 100px;
height: 100px;
border-top-left-radius: 50%;
border-bottom-left-radius: 50%;
border-bottom-right-radius: 50%;*/
padding:20px;
margin:50px;

  

}


.circle:hover {
  width: 100px;
  height: 100px;
  background-color:#ff00a6 ;

  position: relative;

  animation: bounce 1s;


}



.circle1{
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display:inline-block;
  border-style: solid;
  border-color: #ff00a6;
  border-width: 60px;
  padding:20px;
  margin:50px;
  
  transition: margin 1s ease-out;
  transition: padding 1s ease-out;
  
  
}


@keyframes bounce {
  0%, 20%, 60%, 100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  40% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }

  60% {
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);

  }


  40% {
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
  }


40% {
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px);
  }
  40% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }

  }
}




/*
.box {
  width: 150px;
  height: 150px;
  background: red;
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
  -webkit-transition: background-color 2s ease-out;
  -moz-transition: background-color 2s ease-out;
  -o-transition: background-color 2s ease-out;
  transition: background-color 2s ease-out;
}

.box:hover {
  background-color: green;
  cursor: pointer;
}*/