body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0 auto
}

info {
    background-color: black;
    color: white;
    padding: 8px;
    justify-content: center;
    text-align: center;
}

header {
    border-bottom: 1px solid black;
    padding-left: 15%;
    padding-right: 15%;
    padding-top: 10px;
    padding-bottom: 10px;
    text-align: center;
    display: flex;
    background-color: hsl(36, 19%, 95%);
}

header > button {
    border: 0.5px solid;
    border-radius: 25px;
    padding: 5px;
}

header > div {
    display: flex;
    justify-content: center;
    flex-grow: 1;
}

nav {
    padding-right: 15%;
    padding-left: 15%;
    padding-top: 10px;
    padding-bottom: 10px;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    background-color: hsl(36, 19%, 95%);
    box-shadow: 0 4px 2px -2px gray;
    z-index: 1000;
}

nav > button-container {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    flex-grow: 5;
    align-items: center;
    background-color: hsl(36, 19%, 95%);
}

nav > img {
    height: 1.5rem;
    width: 1.5rem;
    align-self: center;
    margin-left: 1.5rem;
}

a {
    text-decoration: none;
    color: black;
}

search > img {
    height: 1rem;
    width: 1rem;
    align-self: center;
}

search {
    flex-grow: 3;
    display: flex;
    background-color: hsl(0, 0%, 80%);
    padding: 10px;
    border-radius: 25px;
}

search > input {
    border: none;
    background-color: inherit;
    outline: none;
    flex-grow: 1;
    margin-left: 10px;
}

main {
    background-color: hsl(0, 0%, 93%);
    flex-grow: 1;
}

products {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 2rem 15rem 5rem 15rem;
}

product {
    display: grid;
    justify-content: center;
    margin-left: 1rem;
    margin-right: 1rem;
    margin-top: 3rem;
    background-color: hsl(0, 0%, 80%);
}

product > img {
    width: 124px;
    height: 248px;
    background-color: hsl(0, 0%, 80%);
    justify-self: center;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

product > description {
    display: flex;
    background-color: gray;
    flex-wrap: wrap;
    justify-self: center;
    text-align: center;
    justify-content: space-evenly;
    padding: 0.5rem;
    color: white;
}

product > description > p {
    width: 100%;
    font-size: 1.5rem;
}

product > description > buy {
    display: flex;
    border-radius: 25px;
}

product > description > buy > button {
    flex-grow: 1;
    background-color: hsl(166, 92%, 26%);
    border-radius: 0 25px 25px 0;
    outline: none;
    border-style: solid;
    color: white;
    border-color: hsl(166, 92%, 26%);
}

product > description > buy > input {
    border-color: hsl(166, 92%, 26%);
    border-radius: 25px 0 0 25px;
    background-color: inherit;
    outline: none;
    border-style: solid;
    border-width: 3px;
    max-width: 30px;
    text-align: center;
    color: white
}

footer {
    background-color: hsl(0, 0%, 80%);
}

footer > columns {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    background-color: hsl(0, 0%, 80%);
    padding: 2rem;
}

footer media {
    border-left: 1px solid gray;
    padding-left: 3rem;
}

footer > bottom {
    display: flex;
    justify-content: space-evenly;
    padding: 2rem;
    background-color: hsl(0, 0%, 93%);
}

bottom > payment {
    margin-right: 5rem;
}