h1 {
    color: red;
    text-shadow:3px 10px 10px #342fc0;
  }
  p {
    border-style:solid;
    border-width:5px;
    border-color:rgb(183, 91, 138);
    border-radius:10px;
    color: green;
    text-align: center;
    background-color: #3dba23;
  }
  p,
li {
  color: rgb(39, 1, 39);
}
img.floatright { 
    border-radius:10px;
    color: green;
    border-style:solid;
    border-width:10px;
    border-color:rgb(21, 39, 132);
    float: center; 
    animation: rotation 2s infinite linear;
    margin: 5px; 
   

}
@keyframes rotation {
  from {
      transform: rotate(0deg);
  }
  to {
      transform: rotate(359deg);
  }
  }
img.floatright1 { 
    border-radius:10px;
    color: green;
    border-top:5px solid red;
    border-bottom:5px solid green;
    border-left:10px groove #000;
    border-right:10px ridge #000;
    float: left; 
    border-radius: 50px;
    margin: 5px; 
   
}

img.floatright2 { 
  border-radius:10px;
  color: green;
  border-style:solid;
  border-width:10px;
  border-color:rgb(21, 39, 132);
  float: center; 
  margin: 5px;
}

img.img2 {
  animation: myAnimation 3s ease-in-out 1s infinite alternate forwards; /*轉場*/
  position: absolute;
  top: 50%;
  left: 50%;
  border-top:5px solid rgba(232, 216, 155, 0.747);
  border-bottom:5px solid green;
  border-left:5px dashed #000;
  border-right:5px dashed #000;
  filter: drop-shadow(20px 15px 5px #5050ca); /*加陰影*/
}
@keyframes myAnimation { /*轉場*/
  0% {
      transform: scale(1);
  }
  100% {
      transform: scale(3);
      background-color: red;
  }
}

.button1{
  width:100px;
  height:1.5em;
  color: #FF0FF0;
  background-color:#000000;
  text-decoration: none;
  padding: 10px 20px;
  margin:20px 0;
  text-align:center;
  border-radius: 48px;
  font-weight: bold;
}
