*, *:before, *:after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Merienda", sans-serif;
    margin: 0;
    padding: 0;
    background-color: #57442f;
}

h1 {
    font-size: 50px;
    text-shadow: 3px 3px 5px #171111;
    text-decoration: underline dotted rgb(53, 37, 25) 5px ;
    text-underline-offset: 13px;
}

header {
    background-color: #9e8358;
    color: #fff;
    padding: 20px;
    text-align: center;
    position: absolute;
    width: 100%;
    z-index: 1000;
    border-top: 6px solid rgb(53, 37, 25);
    border-bottom: 6px solid rgb(53, 37, 25);
}

nav ul {
    list-style-type: none;
    padding: 0;
}

nav li {
    display: inline;
    margin: 0 15px;
}

nav a {
    color: #ece4e4;
    text-decoration: none;
    font-size: 18px;
    text-decoration: underline 2px #ece4e400;
    text-underline-offset: 5px;
    transition: text-decoration-color 400ms, color 400ms;
}

nav a:hover {
    color: #f5bf73;
    text-decoration-color: #ece4e470;
}

nav a:active {
    color: #3d3428;
}

.menu-item {
    margin-bottom: 30px;
}

.container {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: bisque;
    margin: 110px;
    border-radius: 4%;
    border: 3px solid rgb(54, 41, 31);
}

.container div{
    margin-left: 30px;
    margin-right: 200px;
    margin-top: 10px;
    margin-bottom: 10px;
}

.landing-footer {
    background-color: rgb(109, 109, 109);
    border-top: 3px solid rgb(54, 41, 31);
    border-bottom: 3px solid rgb(54, 41, 31);
    color: white;
    margin-bottom:46px;
    margin-top:140px;
    text-align: center;
}

.landing-footer div {
    margin-right: 20px;
    margin-left: 20px;
}

.treats-grid {
    display: grid;
    justify-content: space-around;
    grid-template-columns: 350px 350px 350px 350px;
    background-color: bisque;
    margin-right: 100px;
    margin-left: 100px;
    margin-bottom: 100px;
    border-radius: 10px;
    border: 3px solid rgb(54, 41, 31);
    padding: 30px;
    gap: 30px;
}

.treats-grid div {
    background-color: rgba(255, 255, 255, 0.3);
    border: 3px solid rgb(54, 41, 31);
    text-align: center;
    height: 450px;
    padding: 30px;
}

.treats-grid div img {
    width: 270px;
    height: 190px;
    border: 1px solid rgb(170, 122, 58);
    margin-bottom: 14px;
}