


/*@font-face {
  font-family: 'Fjalla One';
  src: url('../font/FjallaOne-Regular.ttf');
}

@font-face {
  font-family: 'Barlow';
  src: url('../font/Barlow-Regular.ttf');
}*/

.barlow-regular {
  font-family: 'Barlow', Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: 100;
  src: local('Barlow-Regular'), local('Barlow-Regular'),
    url(../font/Barlow-Regular.ttf)
      format('ttf');
  font-display: swap;
}

.fjalla-one-regular {
  font-family: 'Fjalla One', Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: 400;
  src: local('FjallaOne-Regular'), local('FjallaOne-Regular'),
    url(../font/FjallaOne-Regular.ttf)
      format('ttf');
  font-display: swap;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Barlow', Helvetica, Arial, sans-serif;
}

html, body {
  height: 100%;
  background: #adb5a0;
  background: -webkit-linear-gradient(bottom, #adb5a0, #598069);
  background: -o-linear-gradient(bottom, #adb5a0, #598069);
  background: -moz-linear-gradient(bottom, #adb5a0, #598069);
  background: linear-gradient(bottom, #adb5a0, #598069);
  background-repeat: no-repeat;
  background-size: cover;
}

body { }

h1 {
  font-family: 'Fjalla One', Helvetica, Arial, sans-serif;
  font-size: 80px;
  color: #fff;
  line-height: 1.2;
  padding: 4em 0 0 0;
  text-align: center;
  text-transform: uppercase;
}

p {
  font-weight: 400;
  font-size: 20px;
  color: #fff;
  line-height: 1.5;
  padding: 2em;
  text-align: center;
  font-weight: 300;
}

#wrapper {
  width: 100%;
  min-height: 100%;
  position: relative;
  margin: 0 auto;
}

#main {
  display:block;
  min-height: 80%;
  padding-bottom: 2em;
}

#footer {
  color: #fff;
  min-height: 4em;
  position:absolute;
  bottom: 0;
  width: 100%;
  font-size: 17px;
  font-weight: 300;
  text-align: center;
  padding-top: 20px;
}

.formular {
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.message {
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 30px 0;
}

form {}

form div,
form button {
  float: left;
  display: flex;
  justify-content: center;
  align-items: center;
}

input {
  border: none;
  position: relative;
  padding: 0 20px 0 30px;
  margin: 0 20px 0 0;
  font-size: 18px;
  color: #666;
  line-height: 1.4;
  height: 50px;
  background: #fff;
  border-radius: 25px;
}

input:focus {
    box-shadow: 0 0px 10px 1px rgba(255, 255, 255, 0.5);
    -moz-box-shadow: 0 0px 10px 1px rgba(255, 255, 255, 0.5);
    -webkit-box-shadow: 0 0px 10px 1px rgba(255, 255, 255, 0.5);
    -o-box-shadow: 0 0px 10px 1px rgba(255, 255, 255, 0.5);
    -ms-box-shadow: 0 0px 10px 1px rgba(255, 255, 255, 0.5);
    outline: none;
}

input[type="submit"] {
  padding: 0px 20px;
  background-color: #222222;
  border: none;
  border-radius: 25px;
  color: #fff;
  overflow: hidden;
  font-size: 18px;
  line-height: 1.4;
  max-width: 300px;
  height: 50px;
  border-radius: 25px;
  padding: 0px 50px;
}

/* Small (sm ≥ 900) */
@media (width <= 900px) {

  html, body {background-color:#adb5a0;}

  h1 {
    padding: 1.5em 0 0 0;
  }

  p {}

  form {
    display: flex;
    flex-direction: column;
  }

  input {
    margin-top: 20px;
    width: 300px;
  }

  input[type="submit"] {
    width: 300px;
  }

  #footer {
    font-size: 14px;
  }
  }
