/*
    Copyright (c) 2020 Humint Games. All Rights Reserved.

    HUMINT GAMES CSS style sheet
	style sheed for the coming soon page 
	
	written by
	Author: Andreas Feist
	email: andreasfeist@humint-games.com
*/
@IMPORT url('https://fonts.googleapis.com/css?family=Quicksand&display=swap');
@IMPORT url('https://fonts.googleapis.com/css2?family=Quicksand:wght@700&display=swap');
@IMPORT url('https://fonts.googleapis.com/css2?family=Raleway:wght@300&display=swap');
:root {
  --color-hum-blue: #3e8fcd;
  --color-hum-darkblue: #121421;
  --color-hum-purple: #bc004d;
  --color-hum-light: #ede3e6;
  --color-hum-white: #eeeeee;
  --color-hum-black: #000000;
}

html {
  height: 100vh;
}

body {
  margin: 0;
  font-family: 'Raleway', sans-serif;
  font-size: 14px;
  height: 100%;
  background-image: url("..\\images\\Background.png");
  background-size: 768px;
  background-repeat: repeat;
}

h1 {
  font-family: 'Quicksand';
  font-size: 3.3em;
  margin: auto;
  padding: 2em 0 0 0;
}

h2 {
  font-family: 'Quicksand';
  font-size: 1.42em;
  color: var(--color-hum-blue);
  margin: auto;
  padding: 1.5rem 0 0 0;
}

p {
  text-align: center;
  width: 80%;
  margin: auto;
  padding: .4rem 0 0 0;
}

ol {
  text-align: center;
  width: 80%;
  margin: auto;
  padding: .4rem 0 0 0;
}

a {
  text-decoration: underline;
  color: inherit;
  font-weight: bold;
}

a a:hover {
  text-decoration: underline;
}

a a:active {
  text-decoration: underline;
}

ul {
  margin: 0 auto 0;
  padding: 3em 0 4em 0;
  border: none;
  outline: none;
  list-style: none;
}

ul li {
  display: inline-block;
}

ul li img {
  width: 3em;
  border-radius: 100%;
  margin: .3em;
}

ul li img:hover {
  -webkit-box-shadow: 0 0 15px var(--color-hum-purple);
          box-shadow: 0 0 15px var(--color-hum-purple);
  -webkit-transition: -webkit-box-shadow 0.1s ease-in-out;
  transition: -webkit-box-shadow 0.1s ease-in-out;
  transition: box-shadow 0.1s ease-in-out;
  transition: box-shadow 0.1s ease-in-out, -webkit-box-shadow 0.1s ease-in-out;
  -ms-transition: box-shadow 0.1s ease-in-out;
  -moz-transition: box-shadow 0.1s ease-in-out;
  -webkit-transition: box-shadow 0.1s ease-in-out;
}

form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}

.divContainer {
  margin: 0 auto;
  text-align: center;
  height: auto;
  display: -ms-grid;
  display: grid;
}

.divContainer .divLogo {
  background-color: var(--color-hum-darkblue);
}

.divContainer .divLogo .imgLogo {
  width: 66.7%;
  margin: 4em 0 4em 0;
}

.divContainer .divText {
  text-align: center;
  color: var(--color-hum-light);
  background-image: url("..\\images\\Background_Lines.svg");
  background-repeat: no-repeat;
  background-size: 185%;
  background-position: left bottom;
  background-position-x: -11em;
  background-position-y: -3.5em;
}

.divContainer .divText .social {
  padding: 0 0 0 0;
}

.divContainer .divText .social .form {
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: auto, auto;
      grid-template-rows: auto, auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 3em 3em 2em 3em;
}

.divContainer .divText .social .form .button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  height: 2.45em;
  border: none;
  font-family: 'Quicksand';
  font-size: 1.05em;
}

.divContainer .divText .social .form .emailerror {
  display: none;
  font-size: .8em;
}

.divContainer .divText .social .form .emailerrorAnim {
  display: block;
}

.divContainer .divText .social .form #email {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 65%;
  background: var(--color-hum-light);
  color: var(--color-hum-darkblue);
  border-radius: 1.3em 0 0 1.3em;
  text-indent: 5%;
}

.divContainer .divText .social .form #submit {
  height: auto;
  margin: 0;
  padding: 0;
  width: 35%;
  background: var(--color-hum-purple);
  font-weight: bold;
  color: inherit;
  letter-spacing: 1px;
  border-radius: 0 1.3em 1.3em 0;
  cursor: pointer;
}

.divContainer .divText .social .form #email:focus {
  -webkit-box-shadow: 0 0 20px var(--color-hum-purple);
          box-shadow: 0 0 20px var(--color-hum-purple);
  outline: none;
  -webkit-transition: -webkit-box-shadow .3s ease-in-out;
  transition: -webkit-box-shadow .3s ease-in-out;
  transition: box-shadow .3s ease-in-out;
  transition: box-shadow .3s ease-in-out, -webkit-box-shadow .3s ease-in-out;
  -ms-transition: box-shadow .3s ease-in-out;
  -moz-transition: box-shadow .3s ease-in-out;
  -webkit-transition: box-shadow .3s ease-in-out;
}

.divContainer .divText .social .form #submit:hover {
  -webkit-box-shadow: 0 0 10px var(--color-hum-purple);
          box-shadow: 0 0 10px var(--color-hum-purple);
  outline: none;
  -webkit-transition: -webkit-box-shadow .3s ease-in-out;
  transition: -webkit-box-shadow .3s ease-in-out;
  transition: box-shadow .3s ease-in-out;
  transition: box-shadow .3s ease-in-out, -webkit-box-shadow .3s ease-in-out;
  -ms-transition: box-shadow .3s ease-in-out;
  -moz-transition: box-shadow .3s ease-in-out;
  -webkit-transition: box-shadow .3s ease-in-out;
}

.divContainer .divOffset {
  padding-top: 5em;
}

.divContainer #success, .divContainer #failed, .divContainer #already, .divContainer #Privacy, .divContainer #Terms, .divContainer #BackToMainLink {
  display: none;
  padding-bottom: 2em;
}

/*
 fade animations
*/
.fadeout {
  -webkit-animation: fadeout 1s forwards;
          animation: fadeout 1s forwards;
}

.fadein {
  -webkit-animation: fadein 1s forwards;
          animation: fadein 1s forwards;
  display: block !important;
}

@-webkit-keyframes fadeout {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

@keyframes fadeout {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

@-webkit-keyframes fadein {
  0% {
    display: block;
    opacity: 0;
  }
  1% {
    display: block;
    opacity: 0;
  }
  100% {
    opacity: 1;
    display: block;
  }
}

@keyframes fadein {
  0% {
    display: block;
    opacity: 0;
  }
  1% {
    display: block;
    opacity: 0;
  }
  100% {
    opacity: 1;
    display: block;
  }
}

/*
adjust to mid sized screen
*/
@media only screen and (min-width: 768px) {
  body {
    font-size: 18px;
    background-size: 1024px;
  }
  .divContainer {
    display: -ms-grid;
    display: grid;
    height: 100%;
    -ms-grid-columns: 40% auto;
        grid-template-columns: 40% auto;
    -ms-grid-rows: auto;
        grid-template-rows: auto;
  }
  .divContainer .divLogo {
    padding-top: 15em;
  }
  .divContainer .divLogo .imgLogo {
    position: fixed;
    width: 27%;
    left: 6.5vw;
    padding: 0 0 0 0;
  }
  .divContainer .divText {
    background-position-x: 5em;
    background-position-y: -3.5em;
    padding-top: 10em;
  }
  .divContainer .divOffset {
    padding-top: 20em;
  }
  .divContainer .divPrivacy {
    padding-top: 0em;
  }
}

/*
adjust to big screens
*/
@media only screen and (min-width: 1030px) {
  body {
    font-size: 18px;
    background-size: 1536px;
  }
  .divContainer {
    height: 100%;
  }
  .divContainer .divText {
    background-position-x: 5em;
    background-position-y: -3.5em;
  }
  .divContainer .divText .social {
    padding: 0 0 0 0;
  }
  .divContainer .divText .social .form {
    margin: auto;
    width: 34em;
    padding: 3em auto 2em auto;
  }
}
/*# sourceMappingURL=main.css.map */