@import url(./variable.css);

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Jost", sans-serif;
}

body {
    background: #d5f1f5;
}
.table,
th,
td {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    width: 37%;
    height: 22%;
    border: 1px groove;
    border-style: groove;
}
.heading {
    text-align: left;
    font-size: 28px;
    padding: 20px;
}
h4 {
    text-align: center;
    font-size: 21px;
    font-weight: var(--fw-8);
    color: var(--oxford-blue);
    line-height: 1.3;
}
.table-dark {
    color: #fff;
    background-color: #343a40;
}
.table-dark.table-bordered {
    border: 0;
}

.table td{
    padding: 0.75rem;
    vertical-align: top;
    border-top: 1px solid #dee2e6;
}