@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,300;0,700;1,300&display=swap');

*, ::before, ::after {
  box-sizing: border-box;
}
body {
  min-height: 100vh;
  font: 300 16px/24px 'Lato', sans-serif;
  line-height: 1.2;
  background-color: #f1f2f7;
  display: flex;
  flex: 1;
  align-items: center;
  flex-direction: column;
  color: #000;
}
h1 {
  font-size: 1.4rem;
  text-align: center;
  font-weight: 700;
}
h2 {
}
p {
  margin-bottom: 12px;
}
a {
  text-decoration: none;
  color: #000;
}
.buttons li {  
  margin-bottom: 12px;
}
.buttons a {
  padding: 12px;
  width: 100%;
  background-color: #2352a2;
  color: #fff;
  display: block;
  position: relative;
}
.buttons a:hover {
  background-color: #0e367a;
}
.buttons a::after {
  content: "\21D2";
  position: absolute;
  right: 0;
  top: 0;
  padding: 12px;
  padding-top: 10px;
}
.buttons li.print a::after {
  content: "\1F5B6";
}
.buttons li.is404 a::after {
  display: none;
}
.buttons li.is404 a {
  padding-left: 36px;
}
.buttons li.is404 a::before {
  content: "\21D0";
  position: absolute;
  left: 0;
  top: 0;
  padding: 12px;
  padding-top: 10px;
}
.wrap {
  min-height: 100vh;
  width: 100%;
  max-width: 400px;
  background-color: #fff;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(0, 0, 0, 0.02);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
header .top {
  border-bottom: 1px solid #d3d3d3;
  padding: 12px;
}
header .top a {
  display: inline-block;
}
header .bottom {
  border-bottom: 1px solid #d3d3d3;
  display: flex;
}
header a.back-one {
  padding: 12px;
  padding-left: 24px;
  width: 95px;
}
header h2 {
  font-weight: 700;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding: 12px 24px;
}
header a.back-one + h2 {
  padding-left: 12px;
}
a.back-one:hover {
  color: #2352a2;
}
#content {
  padding: 24px;
  flex: 1;
}
#content .info {
  margin-bottom: 24px;
}
footer {
  padding: 12px 24px;
  font-size: .8rem;
  border-top: 1px solid #d3d3d3;
}