/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

body {
  background-image: url("/image/bg_full.svg");
  background-color: #ffffff;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  height: 100vh;
  margin: 0;
  background-position: center;
}

/* -------- Main Content: default for screen more than 1024px width -------- */
.content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  align-items: center;
  font-family: "Roboto", sans-serif;
  color: #4a4a4a;
}

.logo {
  margin-top: 20vh;
  width: 100%;
  height: auto;
  margin-left: auto;
  margin-right: auto;
}

.message {
  margin: 16px auto;
  max-width: 560px;
}

.cta-button {
  background: #454e60;
  width: 200px;
  height: 40px;
  border-radius: 40px;
  z-index: 100;
  margin: auto;
  text-align: center;
  color: #ffffff;
  padding: 0;
  border: none;
}

.cta-button:hover, .cta-button:focus {
  background-color: #1e86e5;
  cursor: pointer;
  -webkit-transition: background-color .2s;
  transition: background-color .2s;
  outline: none;
}

.cta-button:active {
  background-color: #000000;
  cursor: pointer;
  box-shadow: inset 0 0 10px rgba(16, 22, 26, 0.2);
}

.cta-button h2 {
  line-height: 40px;
  margin: 0;
  font-weight: 600;
}

a {
  text-decoration: none;
}

/* -------- Font -------- */
h2 {
  font-weight: 300;
  font-size: 18px;
  line-height: 32px;
}

/* -------- Media Query -------- */
/* When screen is less than 1024px width, eg: mac 15' */
@media screen and (max-width: 1024px) {
  .content {
    max-width: 80%;
  }

  .logo {
    width: 90%;
  }
}

/* When screen is less than 800px width, eg: tablet */
@media screen and (max-width: 800px) {
  h2 {
    font-size: 14px;
    margin-left: 8%;
    margin-right: 8%;
  }
}

/* When screen is less than 500px width, eg: phone */
@media screen and (max-width: 500px) {
  .logo {
    width: 100%;
  }

  h2 {
    font-size: 11px;
    margin-left: 2%;
    margin-right: 2%;
    line-height: 1.6;
  }

  .cta-button {
    height: 24px;
    width: 140px;
  }

  .cta-button h2{
    line-height: 24px;
    font-size: 11px;
  }
}

/* When screen is less than 1200 height */
@media screen and (max-height: 1200px){
  .logo {
    margin-top: 15vh;
    height: 58vh;
  }
}

/* When screen is less than 812 height, all phones */
@media screen and (max-height: 800px) and (max-width: 500px){
  .logo {
    margin-top: 15vh;
    height: 45vh;
  }
}
