/** HOME Specifics **/
.home-logo {
    width: 130px;
}
.main-content #home,
.main-content #about {
    width: 85%;
    margin: auto;
}
@media screen and (max-width: 800px) {
    .main-content #home,
    .main-content #about {
        width: 90%;
    }
}
.main-content #about p {
    text-align: center;
}

/** SHOP Specifics **/
.main-content #shop h1 {
    text-align: center;
}
.main-content .list-products {
    width: 85%;
    margin: auto;
    padding-left: 0px;
}
.main-content .list-products li {
    background-color: white;
    color: black;
    list-style-type: none;
    display: inline-block;
    margin: 1%;
    padding: 10px;
    border-radius: 5px;
    width: 28%;
}
.product-card-link {
    text-decoration: none;
    color: black;
}
.main-content .list-products .product-name,
.main-content .list-products .product-description {
    text-align: center;
}
.main-content .list-products .product-description {
    font-size: 15px;
    overflow-y: auto;
    height: 150px;
}
.main-content .list-products .product-price,
.main-content .list-products .product-buyButton {
    display: inline;
}
.strikethrough {
    text-decoration: line-through;
}
.product-soldOut {
    text-decoration: none;
    color: #d1b172;
    font-weight: bold;
}
.main-content #shop .products-viewCart {
    width: 10%;
    margin: auto;
    margin-top: 20px;
}
@media screen and (max-width: 800px) {
    .main-content .list-products .product-description {
        display: block;
        overflow: visible;
        height: inherit;
    }
    .main-content .list-products {
        width: 90%;
        padding-left: 0px;
        padding-right: 10px;
    }
    .main-content .list-products li {
        width: 100%;
        font-size: 20px;
        line-height: 1.2em;
        margin: 0px;
        margin-bottom: 20px;
    }
    .main-content #shop .products-viewCart {
        width: 30%;
    }
}

/** CONTACT specifics **/
.main-content#contact p {
    margin: 0px;
    margin-bottom: 10px;
    display: inline-block;
    text-align: center;
    width: 100%;
}
.main-content#contact .form-content {
    width: 49%;
    margin: auto;
    text-align: center;
}
.main-content#contact form input,
.main-content#contact form textarea {
    width: 100%;
    border: 2px #d1b172 solid;
    border-radius: 2px;
    font-size: 1em;
    font-family: arial;
    color: black;
    padding-left: 5px;
}
.main-content#contact form input:focus,
.main-content#contact form textarea:focus {
    outline: none;
    box-shadow: 1px 1px 10px #d1b172;
}
.main-content#contact form input:focus:invalid {
    box-shadow: 1px 1px 10px red;
}
.main-content#contact form input:invalid {
    border-color: red;
}
.main-content#contact form h1 {
    color: black;
    text-align: center;
}
.main-content#contact form p {
    margin-bottom: 0px;
}
.main-content#contact form textarea {
    height: 95px;
}
.main-content#contact form button {
    background-color: #d1b172;
    color: black;
    border-color: #d1b172;
    border-radius: 3px;
    font-size: 1.3em;
    cursor: pointer;
    margin-top: 1em;
}
.main-content#contact form button:hover {
    color: #d1b172;
    background-color: black;
}
@media screen and (max-width: 800px) {
    .main-content#contact .form-content {
        width: 90%;
    }
    .main-content#contact .form-content div p {
        font-size: 1.3em;
    }
}
.main-content#contact .icon {
    position: relative;
    top: 5px;
    z-index: 10;
}
.left-box {
    display: inline-block;
    width: 49%;
    position: relative;
    left: 25%;
    bottom: 50%;
}
.divider {
    width: 65%;
    margin: auto;
    margin-top: 20px;
    margin-bottom: 20px;
    border-bottom: 5px solid white;
    border-radius: 500px;
}


.banner {
    background-color: black;
    width: 50%;
    margin: auto;
    margin-top: 1em;
    margin-bottom: -6px;
    border-radius: 10px 10px 0px 0px;
}
.banner h2 {
    text-align: center;
    padding: 10px 10px 0px 10px;
    margin: 0px;
    color: #d1b172;
}
@media screen and (max-width: 800px) {
    .banner {
        width: 90%;
    }
}
footer {
    margin-top: 0px;
}
