* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    display: flex;
    background-color: hsl(30, 18%, 87%);
    justify-content: center;
    align-items: center;
    padding: 60px;
    font-family: 'Outfit', sans-serif;
}

.box {
    display: flex;
    justify-content: center;
    align-items: center;
}

.content {
    background-color: white;
    display: flex;
    max-width: 600px;
    width: 100%;
    height: auto;
    flex-direction: column;
    border-radius: 8px;
    padding: 30px;
}

.content img {
    align-self: center;
    width: 100%;
    height: 250px;
    padding-bottom: 30px;
    border-radius: 8px;

}

h1 {
    padding-bottom: 30px;
}

ul,
ol,
p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

p {
    font-size: 16px;
}

h2 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: hsl(14, 45%, 36%);
}

h1,
h2 {
    font-family: 'Young Serif', sans-serif;
    font-weight: 400;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
}

table td {
    padding: 12px 0;
    font-size: 16px;
    color: hsl(30, 10%, 34%);
}

table tr {
    border-bottom: 1px solid black;
}

table .g {
    color: hsl(14, 45%, 36%);
}

span {
    color: hsl(332, 51%, 32%);
}

ul li span,
ol li span {
    color: hsl(30, 10%, 34%);
}

table td:last-child {
    margin: none;
}