* {
  font-family: sans-serif;
  margin: 0;
  padding: 0;
  outline: 0;
  box-sizing: border-box;
}

body {
  -webkit-font-smoothing: antialiased;
  background: url("/javax.faces.resource/background.jpg.xhtml?ln=img");
}

main {
  width: 800px;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-content: center;
  justify-content: center;
  margin: 0 auto;
  text-align: center;
}

main > img {
  width: 130px;
  margin: 0 auto;
}

main > section {
  background: #fff;
  border: solid 1px #eee;
  border-radius: 2px;
  margin-top: 24px;
  padding: 40px 100px 60px;
}

main > section > span {
  font-size: 18px;
  font-weight: 500;
  color: #19b7b9;
}

main > section > div {
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
}

a {
  transition: opacity .3s;
}

a:hover {
  opacity: .7;
}

@media only screen and (max-width: 850px) {
  main {
    width: 80%;
    margin: 0 auto;
  }

  main > section {
    padding: 25.888px 16px;
  }

  main > section > span {
    font-size: 16px;
  }

  main > section > div {
    flex-direction: column;
  }

  main > section * + * {
    margin-top: 40px;
  }
}
