/******************************
Author: LogicNet
Date: 03.2020

          Global
******************************/
:root{
  --yellow: #E1DD00;
  --yellow-txt: #888800;
  --grey-txt: #302930;
}
@font-face {
  font-family: "Niveau Grotesk";
  src: url("../webfonts/Niveau_Grotesk_medium.ttf");
  font-weight: 400;
}
@font-face {
  font-family: "Niveau Grotesk";
  src: url("../webfonts/Niveau_Grotesk_bold.ttf");
  font-weight: 600;
}
@font-face {
  font-family: "Niveau Grotesk";
  src: url("../webfonts/Niveau_Grotesk_black.ttf");
  font-weight: 900;
}

body{
  font-family: "Niveau Grotesk", sans-serif;
  font-weight: 400;
  font-size: 19px;
  width: 100vw;
  min-height: 100vh;
  background-image: url('../img/bg.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
section{
  max-width: 100vw;
  padding: 20px;
}
/*******end of global*******/


/******************************
          Home
******************************/
main{
  width: 100vw;
  min-height: 100vh;

  display: flex;
  justify-content: center;
  align-items: center;

}

.logo{
  width: 100%;
  height: 200px;
  background: url('../img/logo.svg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
main h1{
  text-align: center;
  font-size: 150px;
  line-height: 0.9em;
  margin-top: 70px;
  margin-bottom: 0px;
  text-transform: uppercase;
  font-weight: 900;
}
main p{
  font-size: 25px;
  font-weight: 600;
  margin-top: 0px;
  text-align: center;
  color: var(--yellow-txt);
}
main h2{
  font-size: 19px;
  margin-top: 60px;
  margin-bottom: 10px;
  text-align: center;
  text-transform: uppercase;
}

main .tnp-subscription input.tnp-email{
  display: block;
  background-color: transparent;
  background-image: url('../img/input-bg.svg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  border: 0px;
  width: 780px;
  height: 53px;
  max-width: 100%;
  padding: 15px 35px;
  font-size: 23px;
  text-align: center;
  margin-bottom: 20px;
}
main .tnp-subscription input.tnp-submit{
  font-family: "Niveau Grotesk", sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--yellow);
  width: auto;
  display: inline-block;
  border-radius: 5px;
  text-transform: uppercase;
  padding: 10px 20px;

}
main .tnp-subscription form{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
main .footer{
  display: flex;
  justify-content: center;
  align-items: stretch;
  margin-top: 50px;

}
main .footer .arrow{
  width: 20px;
  background-image: url('../img/arrow.svg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  margin-right: 5px;
}
main .footer p{
  color: var(--grey-txt);
  text-transform: uppercase;
  font-size: 20px;
  line-height: 1em;
  font-weight: 900;
  margin: 0px;
}
/*******end of Home*******/

.error{
    color: red;
}