
:root {
  --primary: #000000;
  --secondary: #FFC142;

  --white: #FFFFFF; 
  --black: #000000; 
  --grey: #CCC; 

  --red: #A04841; 
  --orange: #FF9756; 
  --blue: #375397; 
  --yellow: #FFC142; 
  --teal: #009DA7; 
  --mist: #B5D2C8; 

  --white-fade: #FFFFFF33; 
  --black-fade: #00000033; 

  --red-fade: #A0484133; 
  --orange-fade: #FF975633; 
  --blue-fade: #37539733; 
  --yellow-fade: #FFC14233; 
  --teal-fade: #009DA733; 
  --mist-fade: #B5D2C833;   
}


*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


body{
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;  
  font-size: 1rem;
  line-height: 1.7;
  background-color: #000000;
  text-align:center;
  color:#FFFFFF; 
}

.v100{
  height: 100vh;
}

img{
  border: 0;
  max-width:100%;
}
.flex{
  display:flex;
  width: 90%;
  max-width: 600px;
  margin:0 auto;
}

.flex.vert{
  align-items:center;
}


.flex .full{
  width:100%;
}

h1 img{
  width: 70%;
  max-width: 300px; 
  animation: wiggle 3.4s ease-in-out infinite;
}



h2{
  font-size: 2rem;
  line-height: 1.3;
  font-weight: 500;
  margin-top: 40px;
  margin-bottom: 20px;
  position:relative; 
}

h2 span{
  color: var(--yellow);
  display:block;
}



@keyframes wiggle{
  0%   { transform: scale(1); }
  12%  { transform: scale(1.1); }
  18%  { transform: scale(1); }
  24%  { transform: scale(1); }
  100% { transform: scale(1); }
}

.coming{
  font-size: 0.8rem;
  margin-top: 30px; 
}