.price {
    padding: 200px 0;
    background-color: var(--base-light-background);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.title {
    font-size: 50px;
    margin: 0;
    text-align: center;
}

.description {
    font-weight: 500;
    margin-bottom: 50px;
    text-align: center;
}

table {
    max-width: 70vw;
}

table thead td {
    font-size: 18px;
    font-weight: 600;
    border-bottom: 1px solid var(--base-background-color);
}

table td {
    padding: 10px 30px;
}

.dark {
    background-color: var(--base-background-color);
    color: var(--base-light-background);
}