 <style
body {
    background-color: lightblue;
}

h1 {font-family: Papyrus ;
    color: blue;
    text-align: center;
}
h2 {text-align: center;
     color: green;

}
h3 {text-align: center;
color:green;
}
h4 {text-align: center;
color: blue;
}
h5 ¨{text-align: center;
color: red;
font-family: Papyrus;
}




p {
    font-family: verdana;
    font-size: 20px;
	text-align:center;
	color: blue;
}
table, th, td {
    border: 1px solid red;
    border-collapse: collapse;
}
th, td {
    padding: 12px;
}
td {
	background-color: white;
} 
	


 
ul {font-family: Times New Roman;
	text-align: center;
color: SlateBlue;
font-size: 20px;
}
ol {font-family: Papyrus;
	text-align: center;
	color: black;
}
center {
  margin: auto;
  width: 60%;
  border: 3px solid #73AD21;
  padding: 10px;
}

#myBtn {
  display: none; /* Hidden by default */
  position: fixed; /* Fixed/sticky position */
  bottom: 20px; /* Place the button at the bottom of the page */
  right: 30px; /* Place the button 30px from the right */
  z-index: 99; /* Make sure it does not overlap */
  border: none; /* Remove borders */
  outline: none; /* Remove outline */
  background-color: red; /* Set a background color */
  color: white; /* Text color */
  cursor: pointer; /* Add a mouse pointer on hover */
  padding: 15px; /* Some padding */
  border-radius: 10px; /* Rounded corners */
  font-size: 18px; /* Increase font size */
}

#myBtn:hover {
  background-color: #555; /* Add a dark-grey background on hover */
}>
</style>




/*  esto es igual que lo de arrib pero con el atributo text-align en p, para que se me centre el piano de cola que está en oferta de pianos
<style>
body {
    background-color: lightblue;
}

h1 {
    color: white;
    text-align: center;
}

p {
    font-family: verdana;
    font-size: 20px;
	text-align:center;
}
</style>
*/

/* esto es lo que había <head>
<style>
body {
    background-color: lightblue;
}

h1 {
    color: green;
    text-align: center;
}

p {
    font-family: verdana;
    font-size: 20px;
}
</style>
</head>
*/