@import url('https://fonts.googleapis.com/css2?family=Freehand&family=Google+Sans+Code:ital,wght@0,300..800;1,300..800&family=Google+Sans:ital,opsz,wght@0,17..18,400..700;1,17..18,400..700&family=Kdam+Thmor+Pro&display=swap');

body {
    position: relative;
    font-size: 18px;
    font-family: "Google Sans", sans-serif;
    color: #000;
    /* background-color: #f1f1f1; */
    margin: 0;
    padding: 0;
    line-height: 1.5;
    overflow-x: hidden;
}

.content {
    background-color: #fff;
    max-width: 78rem;
    margin: 0 auto;
    padding: 2rem;
    position: relative;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Kdam Thmor Pro", "Roboto", sans-serif;
    margin-bottom: 1rem;
}

h2 {
    position: relative;
}

h2::after {
    content: '';
    display: block;
    width: 100%;
    height: 3px;
    background-color: #daa520;
    position: absolute;
    bottom: -5px;
    left: 0;
}

p {
    text-indent: 2rem;
}

a,
a:visited {
    color: #d79a00;
}

img {
    display: block;
    max-width: calc(100% - 20px);
    height: auto;
    margin: 0 auto;
    border: 1px solid #d1d1d1;
    padding: 10px;
}

.text-center {
    text-align: center;
}

pre {
    font-family: 'Google Sans Code', 'Courier New', Courier, monospace;
    /* background: #000 !important; */
}

code {
    background-color: #bebebe86;
    padding-inline: 5px;
    border-radius: 3px;
}

table {
    width: 100%;
    border: 1px solid #f1f1f1;
    border-collapse: collapse;
}

th, td {
    padding: 5px 10px;
    text-align: left;
}

tr:first-child {
    background-color: #daa52081;
}

tr:nth-of-type(even) {
    background: #f1f1f1;
}

.title-page {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 500px;
    color: #fff;
    background-color: #daa520;
}

li {
    line-height: 2;
}

footer {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 200px;
    color: #fff;
    background-color: #daa520;
}

footer h3 {
    font-size: 32px;
}