/*cuerpo*/
body{
    background-color: rgb(240, 222, 189);
}
/*encabezado*/
header{
    font-family:'Times New Roman', Times, serif;
    font-size: 35px;
    text-align: center;
    background-color: rgb(196, 174, 147);

}
/*Titulo principal*/
h1 {
    font-family:'Times New Roman', Times, serif; 
    font-size: 50px;
    text-decoration:underline;
    
}

p {
    font-family:'Times New Roman', Times, serif;
    font-size: 30px;
    background-color: rgb(196, 174, 147);
    display: inline-flex;
}

h2 {
    font-size: 25px;
    background-color: rgb(196, 174, 147);
    display: inline-block;
    padding: 5px 10px;
    border-radius: 5px;
    margin-bottom: 10px;
    margin-top: -350px;
}
/*lista*/
ul {
    font-size:45px;
    margin-top: -15px;
    
}

img {
  
  float: right;
  width: 450px;
  margin-left: 20px;
  margin-right: 230px; /* ← Agrega esto para separarla del borde derecho */
  margin-top: 30px;
  border-radius: 10px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
}

button{
    width: 100px;
    height: 50px;
    font-size: 15px;
    background-color: rgb(104, 85, 62);
    color:white;
}
footer {
    text-align: center;
    background-color: rgb(196, 174, 147);
    padding: 5px; ;
    font-size: 20px;
    margin-top: 20px;
}


