.attribution { font-size: 11px; text-align:   center; }
.attribution a { color: hsl(228, 45%, 44%); }

/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}


:root{
    /* primary colors */
    --Dark-cyan: hsl(158, 36%, 37%);
    --Cream: hsl(30, 38%, 92%);
    /* neutral colors */
    --Very-dark-blue: hsl(212, 21%, 14%);
    --Dark-grayish-blue: hsl(228, 12%, 48%);
    --White: hsl(0, 0%, 100%);

    /* font families */
    --ff-basic: "Montserrat", serif;
    --ff-fancy: "Fraunces", serif;
}

body{
    color: var(--Dark-grayish-blue);
    background-color: var(--Cream);
    font-size: 0.875rem;
    font-family: var(--ff-basic);
    font-weight: 500;
    height: 100vh;
}
.container {
    display: flex;
    justify-content: center;
    align-content: center;
    flex-direction: column;
    min-width: 375px;
    margin: 1rem;
    border-radius: 10px;
    overflow: hidden;
}

.description-box {
    background-color: var(--White);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: max-content;
}

.price-box {
    display: flex;
    align-items: center;
    gap: 1rem;
}

img {
    width: 100%;
    height: auto;
}
.parfum {
    font-family: var(--ff-fancy);
    font-weight: 700;
    color: var(--Very-dark-blue);
    font-size: 2rem;
}

.title {
    letter-spacing: 5px;
    text-transform: uppercase;
}

.price-original {
    text-decoration: line-through;
}

.price {
    color: var(--Dark-cyan);
    font-weight: 700;
    font-family: var(--ff-fancy);
    font-size: 2rem;
}

.button {
    color: var(--White);
    background-color: var(--Dark-cyan);
    border: 0;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 700;
    padding: 0.75rem;
}
.button::before{
    content: url(./images/icon-cart.svg);
    margin-right: 1rem;
}
.button:hover {
    background-color: var(--Very-dark-blue);
    cursor: pointer;
}
.desktop {
    display: none;
}
@media (min-width:800px){
    .container{
        flex-direction: row;
        width: 50vw;
        box-sizing: border-box;
        margin: 20vh auto;
    }
    img,.description-box {
        width: 50%;
    }
    .description-box {
        gap: 0;
        justify-content:space-between;
    }
    .desktop {
        display: block;
    }
    .mobile {
        display: none;
    }
}