body {
  background-color: #fff;
  color: #000;
  font-family: "Segoe UI", SegoeUI, "Helvetica Neue", Helvetica, Arial, sans-serif;
  margin: 0;
  padding: 0;
}
nav, section, footer {
  display: block;
}
#universal-header {
  height: 53px;
}
.brand-icon {
  display: inline-block;
  height: 32px;
  padding: 10px 10px 11px 0;
  font-weight: bold;
}
.brand-icon a,
.brand-icon a:link,
.brand-icon a:visited,
.brand-icon a:active,
.brand-icon a:hover,
.brand-icon a:focus
{
  text-decoration: none;
  color: inherit;
}
.brand-icon a:focus {
  outline: 2px dashed #000;
  outline-offset: -2px;
}
.brand-icon img {
  vertical-align: middle;
}
.hero {
  height: 450px;
  background-image: linear-gradient(#aaaaff, #f0f0f0);
}
#universal-footer {
  background-color: #f2f2f2;
  min-height: 60px;
  font-size: 95%;
  color: #333;
  padding: 0.8em 0;
}
#universal-footer p {
  margin: 0.8em 0;
}
#universal-footer p:first-child {
  margin-top: 0;
}
#universal-footer p:last-child {
  margin-bottom: 0;
}

.fullwidth {
  width: 100%;
}
.pagewidth {
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto;
}

.cardholder {
  display: flex;
  flex-flow: row wrap;
  gap: 20px;
  justify-content: space-between;
  padding: 40px 0;
}
@media only screen and (max-width:1516px) {
  .cardholder { justify-content: space-around; }
}
.card {
  width: 360px;
  height: 400px;
  flex: 0 0 360px;
  box-shadow: 1px 1px 5px #c0c0c0;
  border-radius: 2px;
  display: flex;
  flex-direction: column;
}
.card[role="link"]:focus {
  outline: 4px dashed #c0c0c0;
  outline-offset: -4px;
}
.card-back {
  display: block;
  background: #c0c0c0;
  height: 200px;
  flex: 0 0 200px;
  width: 100%;
}
.card-body {
  flex: 1 0 auto;
  width: 100%;
  padding: 10px;
  box-sizing: border-box;
}
.card-body .head {
  display: block;
  font-size: 1.8em;
  font-weight: bold;
  margin-bottom:0.2em;
}
.card-foot {
  width: 100%;
  height: 50px;
  padding: 10px;
  box-sizing: border-box;
  flex: 0 0 50px;
}

.button {
  display: inline-block;
  line-height: 1;
  padding: 7px 14px;
  background: #0067b8;
  color: #fff;
  border-radius: 2px;
  text-decoration: none;
  font-weight: bold;
}

/*.card[role="link"]:focus .button,*/
.button:hover, .button:active, .button:focus {
  text-decoration: underline;
  outline: 2px dashed #fff;
  outline-offset: -3px;
}