* {
    box-sizing: border-box;
}
body {
    background-color: #46211A;
    color: #090101;
    font-family: 'Open Sans', arial, sans-serif;
}
  
  header {
    display: block;
    background-color: #F1D3B2;
    padding: 15px;
    margin-bottom: 10px;
    
    }
    .wrapper {
        background-color: #A43820;
        width: 80%;
        margin: auto;
    }
      nav {
        transform: translateX(0%);
        transition: all 2s ease-in;
        background: #F1D3B2;
        border-radius: 12px;
        display: flex;
        flex-direction: column;
    }

    ul{
        display: flex;
        flex-direction: row;
        justify-content: space-evenly;
    }
    li {
        font-size: 20px;
        line-height: 2;
        transition: all .25s ease-in-out;
        list-style: none;
    }

    div {
        border: 4px solid black;
        background-color: #F1D3B2;
       display: inline-block;
       flex-direction: column;
       margin: 10px;
       width: 45%;
       
    }

    img{
        width: 250px;
        height: 250px;
        margin: 10px;
        object-fit: cover;
       border:15px outset #46211A;
    }
    p{
        font-weight: bolder;
        color: #46211A;
    }

    h1 {
        text-align: center;
        letter-spacing: 4px;
        color: #46211A;

        
    }
    h4 {
        text-align: center;
        letter-spacing: 4px;
      }
    section {
       text-align: center;
      
    }
    h3 {
        text-align: center;
        color: #46211A;
    }

    h2 {
        background-color: #46211A;
        color: #F1D3B2;
        text-align: center;
        padding: 2px;
    }
    footer {
        background-color: #F1D3B2;
        padding: 10px;
        
    }

    a:link {
        color: #090101;
    }
    a:visited {
        color: red;
    }

    @media only screen and (max-width: 600px) {

        .wrapper {
            width: auto;
        }

        img {
            width: 80%;
        }

        div {
            width: 95%
        }

        nav {
            width: 100%;
            margin: auto;
        }

        li {
            font-size: 20px;
            padding: 5px;
        }
    }
    
    