body{
    background-color: #ffffff;
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
}

#container{
    display: flex;
    width: 900px;
    max-width: 90vw;
    height: 100vh;
    margin: auto;
    text-align: center;
    padding-top: 10px;
    transition: 300ms;
    position: relative;
}

#top{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 95%;
    margin: 12px auto;
    background-color: #6A8384;
    padding: 20px 0;
    border-radius: 8px;
    color: #e6e6ed;
}

#logo{
    width: auto;
    height: auto;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: row;
    cursor: pointer;
    padding-left: 25px;
}

#logo svg{
    width: 40px;
    height: auto;
}

#top_links{
    display: flex;
    align-items: center;
    gap: 16px;
    margin-left: auto;
    font-weight: bold;
}

#top_links:hover{

}

#product_link, #home{
    display: flex;
    margin-left: auto;
    align-items: center;
    justify-content: center;
    color: #e6e6ed;
    text-decoration: none;
    font-size: 18px;
    text-align: center;
    cursor: pointer;
}

#cart_icon{
    position: relative;
    width: auto;
    height: auto;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: row;
    cursor: pointer;
    padding-left: 25px;
    padding-right: 25px;
}

#cart_icon svg{
    width: 33px;
    height: 33px;
}

#cart_icon span{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 20px;
    height: 20px;
    background-color: crimson;
    color: #e6e6ed;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    right: 20px;
}

#main_image{
    display: flex;
    max-width: 93vw;
    margin: 4px auto;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    cursor: pointer;
    border-radius: 5px;
}

.product_feature{
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 30px auto;
    gap: 50px;
}

#product{
    flex: 0 1 30%;
    flex-direction: column;
    justify-content: center;
    max-width: 25%;
    height: auto;
    align-items: center;
    margin-bottom: 20px;
    font-size: 20px;
    background-color: #e0e8e8;
    border-radius: 8px;
    padding: 10px;
}

#product h1{
    font-size: 28px;
}

#product img{
    display: block;
    width: 90%;
    margin: 30px auto 0 auto;
}

#product a,
#delete_item{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    cursor: pointer;
    text-decoration: none;
    outline-color: transparent;
    text-align: center;
    line-height: 3;
    color: #e6e6ed;
    flex: 1;
    width: 100px;
    height: 35px;
    margin-left: auto;
    padding-left: 8px;
    padding-right: 8px;
    background: #516667;
    border-radius: 8px;
    transition-delay: 30ms;
    font-size: 16px;
    font-weight: bold;
}

#buy_more,
#product_grid #text_item_cart a,
#delivery_form #submit,
#success_sign #link_home{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    cursor: pointer;
    text-decoration: none;
    outline-color: transparent;
    text-align: center;
    line-height: 3;
    color: #e6e6ed;
    flex: 1;
    width: 175px;
    height: 45px;
    padding-left: 8px;
    padding-right: 8px;
    margin: 10px auto;
    background: #516667;
    border-radius: 8px;
    transition-delay: 30ms;
    font-size: 18px;
    font-weight: bold;
}

#buy_more:hover,
#product a:hover,
#product_grid #text_item_cart a:hover,
#delete_item:hover,
#delivery_form #submit:hover,
#success_sign #link_home:hover{
    background: #062E35;
    color: #e6e6ed;
    transition-delay: 60ms
}

#bottom{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: relative;
    bottom: 0;
    width: 95%;
    height: 50px;
    font-size: 18px;
    margin: auto;
    padding-top: 10px;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    background-color: #6A8384;
}

#bottom p{
    font-size: 15px;
    color: #e6e6ed;
    margin-left: 15px;
}

#terms{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 90vw;
    text-align: left;
    margin-left: 50px;
    cursor: pointer;
}