body{
  background-image: linear-gradient( to top right, green, yellow, pink ); 
  text-align: center;
  cursor: url('curso.png'), auto;
}
  
h1 {
  color: blue;
  font-size: 55px;
}

h2 {
  color: darkblue;
  font-size: 50px;
}

p {
  color: darkblue;
  font-size: 40px;
}

p{
  border-style:outset;
  border-width: 10px;
  border-color: gold;
  border-radius: 10px;
  padding:5px;
}
  
.green-text {
  color: green;
}

@keyframes bounce {
  0% {
    top: 0px
  }
  50% {
    top: 10px
  }
  100% {
    top: 0px
  }
}
.bouncy-text {
  position: relative;
  animation-name: bounce;
  animation-duration: 0.5s;
  animation-iteration-count: infinite;
}

.botton{
  color: blue;
}

.botton:hover{
  color: lightblue;
}
