:root {
  --primary: #ef3ede;
}

* {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body {
  font-size: 2rem;
}

.wrapper {
  margin-top: 20px;
}

/* COMMON */
.container {
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
}

h1 {
  font-size: 2.6rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 20px;
}

span {
  color: var(--primary);
}

.table {
  width: 100%;
  border: 1px solid;
  border-collapse: collapse;
}

.table thead {
  font-weight: 600;
}

.table th {
  background-color: #ccc;
}

.table th,
.table td {
  border: 1px solid;
  padding: 10px 12px;
  line-height: 20px;
  vertical-align: middle;
}

.table .name {
  width: 15%;
}
.table .Value {
  width: 50%;
}
.table .description {
  width: 35%;
}

.bold {
  font-weight: 600;
}
