@import url('https://fonts.googleapis.com/css?family=Titillium+Web:400,700&display=swap');

html, body{
  width: 100%;
  margin: 0;
}
body {
  padding: 0;
  color: #2D2B36;
  font-size: 20px;
  font-family: "Titillium Web", sans-serif;
}
*, *::before, *::after {
  box-sizing: border-box;
}
* {
  font-variant-ligatures: none;
}
img{
  width: 100%;
  border: none;
}
strong {
  font-weight: 700;
}
h1, h2, h3{
  font-weight: 700;
}
h1{
  font-size: 40px;
  line-height: 125%;
  text-align: center;
  margin: 20px 0 40px;
}
.header{
  background-size: cover;
  min-height: 540px;
  position: absolute;
  overflow: hidden;
  z-index: 101;
  top: 0;
  left: 0;
  width: 100%;
}
.container {
  width: 100%;
  max-width: 1240px;
  padding: 0 20px;
  margin: 0 auto;
}
.message-holder{
  display: flex;
  justify-content: center;
  min-height: 400px;
  align-items: center;
  height: 100vh;
  position: relative;
  z-index: 111;
}
.message{
  -webkit-box-shadow: 0 0 5px 0 rgba(108,65,253,.15);
  -moz-box-shadow: 0 0 5px 0 rgba(108,65,253,.15);
  box-shadow: 0 0 5px 0 rgba(108,65,253,.15);
  width: 100%;
  max-width: 680px;
  padding: 50px 40px 70px;
  background: #fff;
}
.message-bottom{
  display: flex;
  justify-content: center;
}
.btn{
  color: #6c41fd;
  border: 1px solid #6c41fd;
  background: #fff;
  padding: 12px 10px 14px;
  width: 100%;
  max-width: 196px;
  min-height: 50px;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  font-size: 20px;
  line-height: 100%;
  font-family: "Titillium Web", sans-serif;
  margin: 0 2%;
  text-decoration: none;
}
.btn.btn-primary{
  color: #fff;
  background: #6c41fd;
}

@media only screen and (max-width: 720px) {
  h1{
    font-size: 28px;
  }
  .message{
    padding: 30px 20px 50px;
  }
  .btn{
    font-size: 16px;
    min-height: 44px;
  }
}
