html, body {
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
}

.card {
    background-color: #f8f8f8;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    margin: 20px;
    padding: 10px;
    border-radius: 20px;
}

#navbar {
    display: flex;
    height: 50px;
    background: #000;
    justify-content: space-evenly;
    align-items: center;
}

#navbar a {
    color: #fff;
}

#header h1 {
    font-size: 45px;
    font-weight: bold;
    margin: 0;
}

#header p {
    font-size: 20px;
}

#header {
    background-image: url('../img/background.webp');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
}

#header a {
    width: 50px;
    height: 50px;
    border-radius: 25px;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #000;
    margin-top: 30px;
}

#header a:hover {
    transition: all .2s ease-in;
    background: #b6b6b6;
    color: #fff;
}

.heading {
    text-align: center;
    font-size: 40px;
}

.product {
    display: flex;
    flex-direction: column;
    padding: 20px;
    margin-bottom: 30px;
}

.product img {
    width: 250px;
    border-radius: 10px;
    margin: auto;
}

.price {
    font-size: 25px;
    font-weight: bolder;
}

.buy-button {
    color: #fff;
    background: #000;
    padding: 20px;
    border-radius: 15px;
}

.instagram-button {
    display: inline-block;
    padding: 10px 20px;
    margin: 20px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    color: white;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.instagram-button:hover, .pinterest-button:hover {
    transition: all .2s ease-in;
    background: #000;
}

.pinterest-button {
    display: inline-block;
    padding: 10px 20px;
    margin: 20px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    color: white;
    background-color: #ff4848;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.buy-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.buy-button:hover {
    transition: all .2s ease-in;
    background: #b6b6b6;
    color: #000;
}

hr {
    width: 90vw;
}

.benefit-row {
    display: flex;
    flex-direction: column;
    text-align: center;
}

.benefit-row div {
    margin: 20px;
}

.benefit-row span {
    font-size: 50px;
}

.social-media-wrapper {
    display: flex;
    justify-content: center;
    text-align: center;
}

#social img {
    width: 100px;
    height: 100px;
}

footer {
    display: flex;
    align-items: center;
    justify-content: space-around;
    background-color: #000;
    color: #fff;
}

footer a {
    color: #fff;
}

#content {
    width: 80vw;
    margin: auto;
}

.social-medias {
    display: flex;
    flex-direction: column;
}

.social-media p {
    height: 60px;
}

.customer-reviews-wrapper{
    display: flex;
    flex-direction: column;
}

.customer-review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #9a9a9a;
}

.customer-review-header p {
    font-weight: bold;
}

.customer-review-header div {
    color: #ffc928;
}

.more-products {
    text-align: center;   
    padding: 40px 0;
}

.more-products span {
    font-size: 50px;
}

.more-products .buy-section {
    justify-content: center;
}

.social-media-wrapper {
    width: 80vw;
    margin: auto;
}

@media (min-width: 900px) {
    .product {
        flex-direction: row;
        justify-content: center;
        align-items: center;
    }
    .product img {
        margin: 20px 50px;
    }
    .product div {
        width: 100%;
    }
    .products-list {
        width: 80vw;
        margin: auto;
    }
    .benefit-row {
        flex-direction: row;
        justify-content: center;
        width: 80vw;
        margin: auto;
    }
    .social-medias {
        flex-direction: row;
        justify-content: center;
        width: 80vw;
        margin: auto;
    }
    .social-media-wrapper {
        width: 100%;
    }
    .customer-reviews-wrapper {
        flex-direction: row;
        justify-content: center;
        width: 80vw;
        margin: auto;
    }
    .customer-review-wrapper {
        width: 100%;
    }
}