@charset "UTF-8";
@import url(http://fonts.googleapis.com/css?family=Ubuntu:300,400,500);

html {
  height:100%;
  min-height:100%;
}
body {
  background-size: cover;
  background-image:url('../img/background.jpg'); /* Image credit Paul Itkin - https://unsplash.com/photos/xCdFXXoZkJc/ */
  text-align: center;
  background-color: #17181b;
  margin: 0;
  min-height:100%;
}
h1 {
  color: #fbfffe;
  margin-top: 0;
  font-size: 42px;
  font-family: 'Ubuntu', sans-serif;
  font-weight: 500;
  letter-spacing: 3px;
  margin-bottom: 0;
  text-transform: uppercase;
}
h2 {
  color: #cbd5ce;
  font-size: 21px;
  font-family: 'Ubuntu', sans-serif;
  font-weight: 300;
  letter-spacing: 0;
  margin-bottom: 50px;
  margin-top: 15px;
  max-width: 560px;
}
.flexbox {
  justify-content: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  height: 100vh;
  width: 100%;
  text-align: center;
}

.email {
  width: 540px;
  height: 41px;
  cursor: text;
  padding-left: 10px;
  font-size: 21px;
  color: #333;
}

.name {
  width: 540px;
  height: 41px;
  cursor: text;
  padding-left: 10px;
  font-size: 21px;
  color: #333;
}
.myButton {
  -moz-box-shadow:inset 0px 1px 0px 0px #ffffff;
  -webkit-box-shadow:inset 0px 1px 0px 0px #ffffff;
  box-shadow:inset 0px 1px 0px 0px #ffffff;
  background:-webkit-gradient(linear, left top, left bottom, color-stop(0.05, #ededed), color-stop(1, #dfdfdf));
  background:-moz-linear-gradient(top, #ededed 5%, #dfdfdf 100%);
  background:-webkit-linear-gradient(top, #ededed 5%, #dfdfdf 100%);
  background:-o-linear-gradient(top, #ededed 5%, #dfdfdf 100%);
  background:-ms-linear-gradient(top, #ededed 5%, #dfdfdf 100%);
  background:linear-gradient(to bottom, #ededed 5%, #dfdfdf 100%);
  filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ededed', endColorstr='#dfdfdf',GradientType=0);
  background-color:#ededed;
  -moz-border-radius:6px;
  -webkit-border-radius:6px;
  border-radius:6px;
  border:1px solid #dcdcdc;
  display:inline-block;
  cursor:pointer;
  color:#777777;
  font-family:Arial;
  font-size:15px;
  font-weight:bold;
  padding:6px 24px;
  text-decoration:none;
  text-shadow:0px 1px 0px #ffffff;
}
.myButton:hover {
  background:-webkit-gradient(linear, left top, left bottom, color-stop(0.05, #dfdfdf), color-stop(1, #ededed));
  background:-moz-linear-gradient(top, #dfdfdf 5%, #ededed 100%);
  background:-webkit-linear-gradient(top, #dfdfdf 5%, #ededed 100%);
  background:-o-linear-gradient(top, #dfdfdf 5%, #ededed 100%);
  background:-ms-linear-gradient(top, #dfdfdf 5%, #ededed 100%);
  background:linear-gradient(to bottom, #dfdfdf 5%, #ededed 100%);
  filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#dfdfdf', endColorstr='#ededed',GradientType=0);
  background-color:#dfdfdf;
}
.myButton:active {
  position:relative;
  top:1px;
}


.content {
  max-width: 95%;
}

input {
  max-width: 100%;
}


@media only screen and (max-width : 992px) {
  h1 {
    font-size: 35px;
  }
  .email, .name {
    width: 90%;
  }
}

/* Small Devices, Tablets */
@media only screen and (max-width : 768px) {
  h1 {
    font-size: 35px;
  }
  .email, .name {
    width: 90%;
  }
}

/* Extra Small Devices, Phones */
@media only screen and (max-width : 480px) {
  h1 {
    font-size: 35px;
  }
  .email, .name {
    width: 90%;
  }
}