
.list-one{
  font-family:"cursive" ,cursive, serif; /*  turns the text into cursive */
  margin: 49px;
  background-color: green; /*  greeen background */
  color: white; /*  white text */
  border-radius: 30px; /*  makes the corners rounded */
  text-align: center;
  justify-content: center;
}

.list-two{
  font-family: "Times New Roman", Times, serif;
  color: red;
  padding: 20px;
  background: black;
  font-style:bold;
  font-size: 15px;
  margin-right:300px;
  font-weight: bold;
  
}

.list-three{
  font-family: "Times New Roman", Times, serif;
  color: blue;
  padding:30px;
  background: orange;
  font-style:italic;
  font-size: 30px;
  margin-right:30px;
  font-weight: bolder;
}

#style-image {
  padding: 10px;
  background-color:red;
  
}

#transition-image{
  padding: 20px;
  width: 250px;
  transition:width 1s ease 0.5s;
}

.transition-image:hover {
  width: 350px;
}

.style-image.diamond { /* used this code to make a square a diamond*/
  background:#FF0000;
  width: 200px;
  height: 200px;
  margin: 50px;
  transform: rotate(45deg);
  font-weight: bolder;
  text-align: center;
  font-size: 30px;
}
.style-image.square { /* used this code to make a square */
  background:#FF0000;
  width: 200px;
  height: 200px;
  margin: 50px;
  transform: rotate(90deg) /* used this code to rotate the dimmond to a square */
}

.anime{
  width: 200px;
  height: 200px;
  background: blue;
  animation: switch 4s infinite;
  font-weight: bolder;
  font-family: cursive;
  text-align: center;
  font-size: 30px;
}

@keyframes switch {
  0%{
    background:blue
  }
  50%{
    background:red;
  }
  100%{
  }
}
  
h2 {
  text-decoration: underline;
}

.top {
  justify-content: center;
  text-align: center;
}

