/* https://github.com/zeit/next.js/issues/5264 */

@import url("https://fonts.googleapis.com/css2?family=Lato&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Ubuntu&display=swap");


.cms {
  color: #333;
}
.cms .card {
  border-radius: 20px;
  background-color: white;
  padding: 40px;
}
.cms em, a {
  color: #16a0ca;
  font-style: normal;
  font-weight: bold;
  text-decoration: none;
}
.cms a:hover {
  color: #f6ad55;
  text-decoration: underline;
}

.cms h1 {
  color: #5c5c5c;
}

.cms h4 {
  color: #f6ad55;
  border-bottom: 1px solid #f6ad55;
}

.cms h2 {
  border-bottom: 3px solid #c7ecfa;
  position: relative;
  font-weight: 700;
  font-size: 24px;
  color: #16a0ca;
  padding-bottom: 25px;
  margin-bottom: 30px;
  margin-top: 50px;
}

.cms h2:before {
    content: '';
    display: block;
    width: 35px;
    height: 3px;
    position: absolute;
    bottom: -3px;
    left: 0;
    background-color: #f6ad55;
}

.cms thead>tr>th {
  border-bottom: 2px solid #ddd;
}
.cms tbody>tr>td {
  border-bottom: 1px solid #ddd;
}

.cms th,td {
  padding: 8px;
}