@import url("global.css");


/* Product */

#product {
    width: 1200px;
    height: 450px;
    display: flex;
    padding: 50px;
    margin: 5% auto 1%;
    box-sizing: border-box;
    justify-content: space-between;
    background-color: var(--white);
}

#product img {
    margin: 1px;
    width: 60px;
    height: 60px;
    object-fit: cover;
}

#product img:first-of-type { /* Hero Image */
    width: 260px;
    height: 260px;
}

#product h1 {
    font-size: 35px;
    font-weight: 700;
    margin: 0 0 20px;
}

#product h2 {
    font-size: 25px;
    font-weight: 700;
    color: var(--red);
}

#product p {
    font-weight: 300;
    text-align: justify;
}

#product button {
    right: 0;
    border: 0;
    bottom: 25px;
    width: 170px;
    height: 50px;
    cursor: pointer;
    position: absolute;
    border-radius: 4px;
    color: var(--white);
    text-transform: uppercase;
    background-color: var(--red);
}

#product #text {
    position: relative;
    padding-left: 25px;
}

#product #price {
    bottom: 25px;
    position: absolute;
}


/* Description */

#description {
    width: 1200px;
    height: 450px;
    padding: 50px;
    margin: 1% auto 5%;
    box-sizing: border-box;
    background-color: var(--white);
}

#description h1 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 40px;
}

#description p {
    font-weight: 300;
    text-align: justify;
}

#description br {
    margin-top: 20px;
    display: block;
    content: "";
}
