*{
	box-sizing: border-box;
}

body{
    margin: 5px auto;
    height: 80%;
    justify-content: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: rgb(255, 214, 137);
    border-left: 9px solid brown;
}

header{
    width:80%;
    background-color: rgb(255, 153, 0);
    margin: 10px auto;
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    font-size: 2em;
    padding: 0 20px;
}

header > a{
    font-size: 3em;
}
div:first-of-type{
    width: 80%;
    margin: auto 5px;
    border: dotted 6px rgb(236, 144, 39)
}
article{
    width: 85%;
    margin: 10px 10px;
    border-left:solid 10px rgb(165, 81, 42);
    border-right:solid 10px rgb(165, 81, 42);
    
}
article p:first-of-type{
    width: 60%;
    display: flex;
    flex-wrap: nowrap;
    

}
article img{
    width: 150px;
    height: auto;
    display: flex;
    flex-wrap: nowrap;
}
article section {
  display: flex;
  align-items: center;
  gap: 20px;
}

article img {
  width: 150px; /* el tamaño que quieras */
  height: auto;
}
