* {
    margin: 0;
    padding: 0;
}

:root {
    --pine-tree: #2D2C2A;
    --papaya-whip: #FFEDD5;
    --brown-traditional: #995000;
    --black: 0,0,0;
    --deep-champagne: #FED7AA;
}

body {
    background-color: var(--papaya-whip);
    font-family: 'Roboto', sans-serif;    
    min-height: 100vh;
}

ul {
    list-style: none;
}

h1, h2, h3, .price {
    font-family: 'Roboto Serif', serif;
    text-transform: uppercase;
    color: var(--pine-tree);
}

header {
    padding: 32px 0;
    text-align: center;
}

header,
section {
    max-width: 300px;
    margin: 0 auto;
}

header h1 {
    margin-bottom: 4px;
    font-size: 28px;
    line-height: 33px;
}

header h1 span {
    color: var(--brown-traditional);
}

header p {
    font-size: 14px;
    line-height: 16px;

    color: rgba(var(--black), 0.7);
}

section {
    margin-bottom: 24px;
}

section h2 {
    background-color: var(--deep-champagne);
    padding: 8px 16px;
    text-align: center;

    margin-bottom: 24px;
    font-size: 18px;
}

ul li {
    margin-bottom: 16px;
    display: flex;
}

li .details {
    max-width: 240px;
}

.details h3 {
    margin-bottom: 8px;
    font-size: 16px;
    line-height: 19px;
}

.details p {
    color: rgba(var(--black), 0.6);
    font-size: 14px;
    line-height: 21px;
}

footer {
    text-align: center;
    text-transform: uppercase;
    font-family: 'Roboto Serif', serif;
    margin-top: 50px;
}

footer span {
    color: var(--brown-traditional);    
}