@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@300;400;700&display=swap');

:root {
    --background: #efefef;
    --default: #222326;
    --strong: #40424a;
    --basic: #4c4e55;
}

html,
body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-overflow-scrolling: touch;
    font-family: 'Roboto Condensed', sans-serif;
    color: var(--default);
    /* background: var(--background); */
}

.wrapper {
    padding: 30px;
}

.wrapper .content {
    max-width: 640px;
    margin: 0 auto;
    background-color: white;
    padding: 45px;
}

h2 {
    font-size: 1.2rem;
    line-height: 1.5;
    text-align: justify;
}

p,
ol li,
ul li {
    line-height: 1.75;
    color: var(--basic);
    text-align: justify;
}

ol,
ul {
    margin-bottom: 30px;
    padding-left: 15px;
}

ol li:not(:first-child),
ul li:not(:first-child) {
    margin-top: 20px;
}

ol li strong,
ul li strong {
    color: var(--strong);
}

ul li a,
ol li a {
    position: relative;
}

ul li a::before,
ol li a::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 2px;
    background-color: #3eaed8;
    transition: width 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

@media (hover: hover) and (pointer: fine) {
    ul li a:hover::before,
    ol li a:hover::before {
        left: 0;
        right: auto;
        width: 100%;
    }
}

table {
    padding: 0;
    border-spacing: 0;
}

table tr th {
    text-align: left;
    min-width: 100px;
    background-color: #9fc4d7;
}

table tr th,
table tr td {
    padding: 2px 10px;
}

table tr:nth-child(odd) {
    background-color: #e9f1f5;
}

table tr:nth-child(n + 1) td {
    border-right: 1px solid #c2d7e3;
}

table tr td:first-child {
    border-left: 1px solid #c2d7e3;
}

table tr:last-child td {
    border-bottom: 1px solid #c2d7e3;
}

table tr th{
    font-weight: 400;
    padding: 10px 10px;
}
table tr th:not(:last-child){
    border-right: 1px solid white;
}