@charset "UTF-8";
.btn
{
    color: white;
    background-color: darkviolet;
    width: 190px;
    height: 150px;
    margin-left: 38px;
    margin-bottom: 17px;
	border-radius: 30px;
	border-color: white;
	animation-name:inbtn;
	animation-duration:0.5s;
	animation-fill-mode:forwards;
 }

@keyframes inbtn{
  from {
	  opacity: 0.2;
	transform: scale(0.6) translate(-20px,-80px ) rotate(-15deg);
	  
  }

  to {
	  opacity: 1;
      transform: scale(1) translate(0,0) rotate(0deg);
  }
}
 
body{background-color: darkviolet;}

h1{color: white}

h2{color: white}



