* {
margin: 0;
padding: 0;
}

body {
    background-image: linear-gradient(
      rgba(231, 231, 231, 0.3),
      rgba(61, 60, 60, 0.7)
      ),
      url('../img/back.jpg');
}

main {
    font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

h1, li {
    background: rgb(252, 247, 241);
    box-shadow: 5px 15px 10px rgba(31, 30, 30, 0.4);
    padding: 3rem;
    margin: 3rem auto;
    border-radius: 0.5rem;
    max-width: 800px;
 }

h1 {
    text-align: center;
    font-size: 4rem;
    color: rgb(123, 90, 55);
    text-shadow: 5px 5px 10px rgba(31, 30, 30, 0.4);
}

h2 {
    text-align: justify;
    font-size: 2rem;
    color: rgb(113, 82, 50);
    text-shadow: 5px 5px 10px rgba(31, 30, 30, 0.4);
    margin-bottom: 1rem;
}

p {
    color: rgb(86, 60, 32);
    font-size: 1.2rem;
}

li {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

img {
    max-height: 25rem;
    border: 1px solid rgb(86, 60, 32);
    border-radius: 0.5rem;
    padding: 0.5rem;
    margin-right: 2rem;
}

div {
    max-width: 55%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}