:root{
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 18px;
    background-color: #F9F0ED;
    margin: 0;
    padding: 0;
    user-select: none;
}
#landing-section{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
#gif-container{
    display: flex;
    height: 40vh;
    width: 40vh;
    margin: 1rem;
    align-items: center;
    justify-content: center;
}
#gif-landing{
    height: 90%;
    width: 90%;
    user-select: none;
}
#input-product{
    text-align: center;
    font-size: 18px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    width: 22vw;
    min-width: 350px;
    border-radius: 8px;
    padding: 5px 10px;
}
button{
    display: flex;
    width: 100%;
    font-size: 18px;
    align-items: center;
    justify-content: center;
    margin-top: 5px;
    color: #FDFDFD;
    background-color: #AC485A;
    border-radius: 8px;
    padding: 5px;
    border-width: 2px;
    cursor: pointer;
    box-shadow: none;
}
button:hover {
    background-color: #D26A7F;
}
#input-container{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
#shopping-list{
    display: flex;
    flex-wrap: wrap;
    text-wrap: wrap;
    padding-inline-start: 0px;
    max-width: 80vw;
}
#shopping-list>*{
    list-style: none;
    padding: 10px;
    border: 2px solid #AC485A;
    border-radius: 8px;
    margin: 0.3rem;
}
ul li{
    flex-grow: 1;
    user-select: none;
    cursor: pointer;
    text-align: center;
}
li:hover {
    background-color: #E3D7D0;
}
@media screen and (max-width: 600px) {
    #gif-landing{
        height: 300px;
        width: 300px;
        user-select: none;
    }
    #shopping-list{
        max-width: 100vw;
    }
    #gif-container{
        display: flex;
        height: 50vh;
        width: 50vh;
        margin: 1rem;
        align-items: center;
        justify-content: center;
    }
}