main {
    padding: 14rem 15% 7rem 15%;

    display: flex;
    flex-direction: column;
    align-items: center;
}

main img {
    max-width: 40%;
}

h1,
h2,
p {
    width: 100%;
}

h1 {
    margin-bottom: 2rem;
}

h2 {
    margin: 2rem 0;
}

main img {
    margin-top: 2rem;
}

table {
    border: 0.1rem solid var(--font-prim);
    border-collapse: collapse;
    margin-bottom: 2rem;
}

th,
td {
    border: 0.1rem solid var(--font-prim);
    padding: 1.5rem;
}

th {
    font-size: clamp(2rem, 1.5dvw, 3.75rem);
    font-weight: 400;
}

td {
    font-size: clamp(2rem, 1.25dvw, 4rem);
}


.Counter {
    list-style-type: none;
    counter-reset: css-counter;
}

.Counter p {
    counter-increment: css-counter;
}

.Counter p:before {
    content: counter(css-counter) ". ";
    color: var(--font-warn);
}

li {
    font-size: clamp(2rem, 1.25dvw, 4rem);
}

ul {
    align-self: flex-start;
}

p {
    margin: 1rem 0;
}

.Date {
    background-color: var(--bg-sec);
    width: max-content;
    align-self: flex-start;
    padding: 0 0.5rem;
    border-radius: 1rem;
    margin-top: -2rem;
    margin-bottom: 4rem;
}

.Date img {
    filter: invert(1);
    height: 40%;
    margin-right: 2rem;
}

.Comparison {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 2rem;
}