@font-face {
  font-family: 'ClashGrotesk';
  src: url('../fonts/ClashDisplay-Bold.woff2') format('woff2'),
       url('../fonts/ClashDisplay-Bold.woff') format('woff'),
       url('../fonts/ClashDisplay-Bold.ttf') format('truetype');
  font-weight: 700;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: 'ClashGrotesk';
  src: url('../fonts/ClashDisplay-Regular.woff2') format('woff2'),
       url('../fonts/ClashDisplay-Regular.woff') format('woff'),
       url('../fonts/ClashDisplay-Regular.ttf') format('truetype');
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}

body{
  font-family: 'ClashGrotesk';
  font-size: 1rem;
  padding: 1rem;
  background-color: #5EA85E;
  color: #FFFFEB;
  letter-spacing: .1rem;
}

h1,h2{
  font-size: 5rem;
  text-shadow: 5px 5px 0 black, 0 -1px 0 black, 0 1px 0 black, 1px 0 0 black, -1px 0 0 black;
}
h2{
  font-size: 3rem;
  margin-bottom: 3rem;
  margin-top: 0;
}
.container{
  box-sizing: border-box;
  width: 100%;
  height: calc(100vh - 3rem);
  background-color: #5EA85E;
  padding: 4vw;
  min-height: 500px;
  position: relative;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

}

.button{
  font-family: 'ClashGrotesk';
  display: inline-block;
  padding: 1.5rem 1.5rem;
  background: #ffffeb;
  border-radius: 10px;
  border: 1px solid #000;
  color: #000;
  box-shadow: 5px 5px #000;
  font-size: 1.2em;
  transition: all .15s ease;
  text-decoration: none !important;
  cursor: pointer;
}
input{
  display: inline-block;
  padding: 1.5rem 1.5rem;
  background: #ffffeb;
  border-radius: 10px;
  border: 1px solid #000;
  color: #000;
  box-shadow: 5px 5px #000;
  font-size: 1.2em;
  box-shadow: 0 !important;
  outline: 0 !important;
}
input:focus{
  outline: 2px black;
}

.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-message {
  display: none;
  margin-top: 1rem;

  padding: 2rem;
  font-weight: 700;
  font-size: 1.5em;
 }
.form-message.success { color: #fff; }
.form-message.error   { background-color: #c0392b; color: #fff; }

.button:hover{
  background-color: #d5d5d5;
}
.button:focus{
  box-shadow: 0 0 #000;
  transform: translate(5px, 5px);
}
.button:disabled{
  box-shadow: none;
  background-color: #d5d5d5;
}

.cred{
  position: absolute;
  bottom: 0;
  right: 0;
}
.cred a{
  text-decoration: none;
  color: #FFFFEB !important;
}

