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

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

html {
  font-size: 16px;
}

html,
body {
  width: 100%;
  height: 100%;
}

body {
  font-family: 'Open Sans', sans-serif;
  position: relative;
  background: #1E222B;
}

a {
  text-decoration: none;
}

.container {
  width: 100%;
  height: 100%;
  position: relative;
}

.message {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  margin: 20px;
  max-width: 525px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  text-align: center;
}

.message span {
  font-weight: bold;
  display: block;
  padding: 15px 20px;
  color: #fff;
  background: #245ded;
  text-align: center;
  font-size: 18px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}

.message p {
  display: block;
  padding: 15px 20px;
  text-align: center;
  color: #767676;
}

.message .line {
  width: 100%;
  height: 1px;
  background: #e4e4e4;
}

.message a {
  display: inline-block;
  padding: 10px 25px;
  background: #18b35c;
  color: #fff;
  text-decoration: none;
  margin: 15px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  font-weight: bold;
}

.message a:hover {
  background: #078941;
}

@media screen and (max-width: 545px) {
  .message {
    position: absolute;
    top: 0;
    left: 0;
    transform: translate(0, 0);
  }
}