:root {
    --primary-color: rgb(140, 49, 49);
    --secondary-color: rgb(143, 143, 143);
    --white-color: rgb(233, 233, 233);
    --text-color: rgb(20, 20, 20);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font: 16px Helvetica, "Lucida Grande", Arial, sans-serif;
    background-color: var(--white-color);
}
  
h1, h2, h3, h4, h5 {
    font-weight: normal;
    margin: 30px 0px 15px 0px;
    line-height: 1.4em;
}

p {
    margin: 5px 0px 5px 0px;
    line-height: 1.4em;
    color: var(--text-color);
}

ul {
    margin-bottom: 15px;
    line-height: 1.4em;
}

main img {
    width: 100%;
    height: auto;
}

header {
    display: flex;
    gap: 20px;
    align-items: center;
    background-color: var(--primary-color);
    color: var(--white-color);
    padding: 20px;
    border-bottom: 5px solid var(--secondary-color);
}

header img {
    max-width: min(10rem, 20vw);
    height: auto;
}

header a {
    color: var(--white-color);
}

footer {
    background-color: var(--primary-color);
    color: var(--white-color);
    padding: 20px;
    border-top: 5px solid var(--secondary-color);
}

footer  a {
    color: var(--white-color);
}

table {
    border: 1px solid var(--text-color);
}

th {
    text-align: right;
    border-right: 1px solid var(--text-color);
}

td, th {
    border-bottom: 1px dotted var(--text-color);
}

tr:last-child td, tr:last-child th {
    border-bottom: none;
}

.txt--xxl {
    font-size: 1.5rem;
}

.txt--normal {
    font-size: 1rem;
}

.bold {
    font-weight: 700;
}

.center {
    text-align: center;
}

.container {
    max-width: min(60rem, 94.2vw); /* max-width: 1.450px */
    margin-block: 2.5rem;
    margin-inline: auto;
}
