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

html,
body {
  position: relative;
  height: 100%;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  color: #fff;
  background: #022d40;
  display: flex;
  align-items: center;
  justify-content: center;
}

.content {
  padding: 20px;
  text-align: center;
  width: 100%;
}

img {
  margin: 0 auto 50px;
  display: block;
  width: 300px;
  max-width: 100%;
  height: auto;
}

.info {
  line-height: 1.5;
  display: flex;
  flex-flow: row wrap;
}
.info div {
  max-width: 100%;
  flex: 0 0 100%;
  padding: 0 15px;
}
@media (min-width: 768px) {
  .info div {
    max-width: 50%;
    flex-basis: 50%;
  }
  .info div:first-child {
    text-align: right;
  }
  .info div:last-child {
    text-align: left;
  }
}
@media (max-width: 768px) {
  .info div:first-child {
    margin-bottom: 15px;
  }
}

a {
  color: #fff;
  display: inline-block;
  text-decoration: underline;
}

h1 {
  font-size: 30px;
  font-weight: 700;
  display: block;
  margin-bottom: 15px;
}