@font-face {
    font-family: 'Outfit';
    src: url(/assets/fonts/outfit/Outfit-VariableFont_wght.ttf);
}

@font-face {
    font-family: 'Outfit';
    src: url(/assets/fonts/outfit/Outfit-VariableFont_wght.ttf);
    font-weight: bold
}

@font-face {
    font-family: 'YoungSerif';
    src: url(/assets/fonts/young-serif/YoungSerif-Regular.ttf);
}

body {
    background-color: #f4e8dc;
    padding: 30px;
    display: flex;
    justify-content: center;
}

.main-container {
    background: hsl(0, 0%, 100%);
    padding: 20px;
    max-width: 600px;
    border-radius: 10px;
}

img {
    width: 100%;
    border-radius: 10px;
}

.special-font-one {
    font-family: 'YoungSerif', sans-serif;
}

h1 {
    font-size: 2.5em;
    color: hsl(24, 5%, 18%);
}

h2 {
    color:hsl(14, 45%, 36%)
}

p, ul, ol, table {
    font-family: 'Outfit';
    font-size: 16px;
    font-weight: 400;
    color: hsl(30, 10%, 34%);
}

.time {
    padding: 20px;
    background: #FFF8FC;
}

.time > h2 {
    font-family: 'Outfit';
    font-size: 1.3em;
    font-weight: 600;
    color: hsl(332, 51%, 32%);
}

li {
    margin-bottom: 7px;
    line-height: 1.5;
    padding-left: 15px;
}

li::marker {
    color: hsl(14, 45%, 36%);
    font-weight: bold;
}

.span-items {
    font-weight: bold;
}

table {
    width: 100%;
    border-spacing: 0 20px;
    border-collapse: separate;
}

td {
    border-bottom: 0.1px solid rgba(0, 0, 0, 0.2);
    padding: 0 0 10px 0;
}

td:nth-child(2) {
    font-weight: bold;
    color: hsl(14, 45%, 36%);
}

hr {
    border: none;
    height: 1px;
    background-color: rgba(0, 0, 0, 0.2);
}

@media (max-width: 640px) {
    .main-container {
        width: 100%;
    }   
}