* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  background-color: #fff;
}

.header-wrapper {
  width: 100%;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  background-color: #34495e;
}

.header-container {
  width: 100%;
  max-width: 1256px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logotipo {
  width: 100px;
  height: 50px;
}

.header-nav {
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-nav-item {
  color: #fff;
  text-decoration: none;
}

.content-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
}

.content-container {
  width: 100%;
  max-width: 746px;
  margin: 0;
}

.content-title {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2em;
  margin: 0;
  padding-bottom: 12px;
  color: #34495e;
}

.content-card {
  padding: 32px;
  border-radius: 6px;
  box-shadow: 0 1px 2px 0 rgb(0 0 0 / 12%);
  background-color: transparent;
}

.content-card h2 {
  font-size: 20px;
  color: rgba(0,0,0,.8);
  margin: 20px 0;
}

.content-card ul {
  list-style: disc;
}

.content-card p,
.content-card li {
  margin: 15px 0;
  color: rgba(0,0,0,.8);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.content-card li {
  margin-left: 20px;
}

@media (min-width: 790px) {

  body {
    background-color: #ededed;
  }

  .content-container {
    margin: 36px 0;
  }

  .content-card {
    background-color: #fff;
    box-shadow: none;
  }
}
