* {
  padding: 0;
  margin: 0;
}
html,
body{
  background: #fff;
  min-height: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.container{
  max-width: 400px;
  width: 100%;
  text-align: center;
}

.container__logo{
  padding-bottom: 10px;
}

.container__logo img{
  max-width: 240px;
  width: 100%;
}

.container__logo p{
  margin-top: 10px;

  font-size: 18px;
  line-height: 24px;
  color: #333;
}

.container__details{

  border-top: 1px dashed #ccc;
  padding-top: 10px;

  font-size: 14px;
  line-height: 18px;
  color: #4B7EC5;
}

.container__details a{
  margin-top: 10px;;
  background: #00A24F;
  color: #fff;
  display: inline-block;
  padding: 6px 12px;
  border-radius: 4px;
  text-decoration: none;
  box-shadow: 1px 1px 0 rgba(0, 0, 0, 0.2);
}

.container__details a:hover{
  background: #007D3D;
}