@import url('https://fonts.googleapis.com/css2?family=Montserrat&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Fraunces&display=swap');

body {
    width: 100%;
    height: 100vh;
    background-color: hsl(30, 38%, 92%);
    display: grid;
    place-items: center;
    overflow: hidden;
}

section#corpo {
    display: flex;
    width: 700px;
    height: 498px;
    background-color: white;
    position: relative;
    margin: auto;
    border-radius: 20px;
    box-shadow: 0px 0px 10px rgb(211, 133, 133);
}

picture img {
    object-fit: contain;
    border-radius: 20px 0px 0px 20px;
    width: 100%;
    height: 100%;
}

div#corpoTexto {
    object-fit: contain;
    padding: 25px 10px 10px 35px;
}

p {
    font-size: 14pt;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    width: 300px;
    color: hsl(228, 12%, 48%);
}

p#categoria {
    text-transform: uppercase;
    letter-spacing: 8px;
    font-size: 10pt;
}

div#corpoTexto h1 {
    font-size: 25pt;
    font-weight: 1000;
    line-height: 1.1;
    font-family: 'Fraunces', sans-serif;
}

h1#nomePerfume {
    width: 200px;
}

div#precos {
    display: flex;
    place-items: center;
    margin-top: -15px;
    margin-bottom: 15px;
}

div#precos h1 {
    color: hsl(158, 36%, 37%);
}

h3 {
    margin-left: 20px;
    text-decoration: line-through;
    font-weight: 500;
    color: hsl(228, 12%, 48%);
}

p#botao {
    display: inline;
    background-color: hsl(158, 36%, 37%);
    border-radius: 5px;
    color: white;
    padding: 20px 94px 20px 94px;
    width: 100px;
    font-size: 12pt;
}

p#botao:hover {
    background-color: hsl(212, 21%, 14%);
} 

.attribution {
    font-size: 11px;
    text-align: center;
    margin-top: 20px;
}

.attribution a {
    color: hsl(228, 45%, 44%);
    text-decoration: none
}