/*

CSS Exercise Instructions:

- Use class and ID selectors to target and style elements.
- Avoid styling bare HTML tags like h1, p, etc., unless you’re globally restting a style.
- Try to keep your CSS organized by section or layout group.
- Bonus: Group your styles visually or use comments to make sections easier to follow.

Some properties that might be helpful:

    border-radius: ##px; - Rounded corners
    text-transform: uppercase; - All caps
    overflow: hidden; - Clip content inside containers
    text-decoration: none; - Remove underlines
    line-height: ##px; - Adjust space between lines
    width: fit-content; - Shrink to content width
*/

/* Global Styles */
body {
    font-family: "Montserrat", Arial, sans-serif;
    margin: 0 auto;
    width: 1440px;
    height: 1215px;
}

h2 {
    text-transform: uppercase;
}

.product-details{
    padding: 24px;
}

/* Layout Container */
.listing {
    position: relative;
    margin: 0 auto;
    width: 1200px;
    height: 975px;
    top: 120px;
    line-height: 30px;
}

.product {
    width: 590px;
    height: 975px;
    border-radius: 24px;
    overflow: hidden;
    background: #EEEEEE;
    position: absolute;
}

.divider {
    border: none;
    border-top: 1px solid;
    margin: 24px 0;

}
#one {
    top: 0;
    left: 0;
   
}

#two {
    top: 0;
    right: 0;
}

.button {
    background-color: #BAA571;
    padding: 24px;
    display: block;
    width: fit-content;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    color: white;
    letter-spacing: 2px;
    font-size: 24px;
}