* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #fff7eb;
    font-family: Helvetica, Arial, sans-serif;
}

.cont {
    width: 70vw;
    margin: auto;
}

/* HEADER */

header {
    background-color: #d38726;
}

#headerCont {
    display: flex;
    justify-content: center;
    gap: 15vw;
    align-items: center;
    height: 7vh;
}

#yourCartLogo {
    color: #fff7eb;
}

#headerLinks {
    display: flex;
    gap: 1.5vw;
}

#headerLinks a {
    text-decoration: none;
    color: #fff7eb;
    transition-duration: 0.7s;
    font-weight: 600;
}

#headerLinks a:hover {
    color: #dfe0df;
}

/* MAIN */

#mainCont {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 100px;
    gap: 40px;
    min-height: 803px;
}

#searchDiv {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

#searchLabel {
    color: #ad8a68;
}

#searchInput {
    font-size: 20px;
    color: #ad8a68;
    border: 1px solid #d38726;
    border-radius: 8px;
    padding: 5px;
}

#list {
    display: flex;
    flex-direction: column;
    gap: 5px;
    color: #ad8a68;
    font-weight: 700;
    min-width: 300px;
}

#list dd {
    margin-bottom: 15px;
}

/* MAIN ANIMATIONS */

.animationHover {
    transform: translateY(-5px);
    font-size: 18px;
    transition: transform 0.7s ease, font-size 0.7s ease;
}

/* FOOTER */

footer {
    background-color: #d38726;
}

#footerCont {
    padding: 50px;
    display: flex;
    justify-content: center;
    gap: 18vw;
}

#footerLinks {
    display: flex;
    flex-direction: column;
    gap: 3.3vh;
}

#footerLinks a {
    text-decoration: none;
    color: #fff7eb;
    transition-duration: 0.7s;
    font-weight: 600;
    font-size: 16px;
}

#footerLinks a:hover {
    color: #dfe0df;
}

#footerText {
    color: #fff7eb;
    text-align: center;
    font-size: 14px;
    padding-bottom: 0.5vh;
}