html,
body {
  font-family: "Helvetica Neue", "Helvetica", sans-serif;
  font-size: 5vw;
}

@media screen and (orientation: landscape) {
  html,
  body {
    font-size: 3vw;
  }
  .table,
  img {
    max-width: 60vw;
    margin-left: auto;
    margin-right: auto;
  }
}

body {
  display: flex;
  /* min-height: 100vh; */
  margin: 0 auto;
  flex-direction: column;
  line-height: 1.3;
}

main,
footer {
  padding: 10px;
  text-align: center;
}
@media screen and (min-width: 1000px) {
  main,
  footer {
    padding: 30px;
  }
}

main {
  min-height: 5em;
  flex: 1;
}

a {
  color: black;
  display: block;
  transition: transform 400ms ease;
}

a.btn {
  /* border-top: 1px solid black;
  border-bottom: 1px solid black;
  text-decoration: none;
  padding: 0.5em 0;
  display: inline-block; */
}

.table {
  display: flex;
  flex-direction: column;
  border-top: 0.25rem solid black;
  border-bottom: 0.25rem solid black;
  padding: 0.5rem 0;
}

.table .row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.table .row .clo:last-child {
  /* text-align: right; */
}

h1,
h2 {
  text-transform: uppercase;
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin: 0 0 0.25em 0;
}

h2 {
  margin-bottom: 0;
}

.row.menu {
  border-top: 0.25rem solid black;
  padding: 0.5rem 0 0 0;
  margin-top: 0.5rem;
}
.row.menu a {
  width: 100%;
  text-decoration: none;
}

a:hover {
  transform: skew(-13deg);
}

footer {
  text-transform: uppercase;
  font-size: 0.7rem;
  letter-spacing: 0.04em;
}

img {
  width: 100%;
  height: auto;
  margin: 1em 0;
}
