

chorus {
  color: chartreuse;
}

.color-red {
  color: rgb(135, 36, 148);
}

.color-blue {
  color: rgb(166, 255, 0);
}

.color-green {   
  color: rgb(255, 0, 179);
}

.verse {
  border-style: dotted dashed solid double;
}

body
{
background-color: beige;
border-style: dotted dashed solid double;
border-color: darkgoldenrod
}

body {
  background-image: url('scary\ bg.jpg.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

h2{
  color:blue;
  font-family: serif;
}


Button{
  border-width: thick;
  border-style: double;
border: blue;
background-color: aquamarine;
border-style:dashed 
}


.bounce {
  width: 100px;
  height: auto;
  animation: bounce 2s infinite ease-in-out;
  position: relative;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-150px);
  }
}

img {
  width: 500px;
  height: 300px;
}

body{
  text-align: center;
  color:gold;
}

h1{
 color: cyan; 
}
h2{
  color: darkorange;
}