html, body { 
height: 100%; 
font-family: 'Montserrat', sans-serif;
}

body {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}

h1 {
font-weight: 100;
font-variant: small-caps;
text-align: center;
margin-bottom: 2%;
color: rgba(5, 126, 255, 0.4);
text-shadow: 0 1px 0 #ccc, 
               0 2px 0 #c9c9c9,
               0 3px 0 #bbb,
               0 4px 0 #b9b9b9,
               0 5px 0 #aaa,
               0 6px 1px rgba(0,0,0,.1),
               0 0 5px rgba(0,0,0,.1),
               0 1px 3px rgba(0,0,0,.3),
               0 3px 5px rgba(0,0,0,.2),
               0 5px 10px rgba(0,0,0,.25),
               0 10px 10px rgba(0,0,0,.2),
               0 20px 20px rgba(0,0,0,.15);
text-shadow: -5px 5px 0px rgba(0, 230, 230, 0.2),
                 10px 10px 0px rgba(1, 204, 204, 0.05),
                 -15px 15px 0px rgba(0, 189, 189, 0.05);
}
h1 .big {
display: block;
text-transform: uppercase;
font-size: 1.8em;

}

a {
	display: inline-block;
	text-align: center;
}

b {
	font-weight: 600;
}

body { 
margin: 0; 
background: #fff; 
}

canvas { 
display: block; 
}

.waves { 
position: absolute; 
left: 0; 
top: 0; 
right: 0; 
bottom: 0;
user-select: none;
pointer-events: none;
}

.fa-regular {
font-size: 4.5em;
}

.startjourney {
margin-top: 1%;
}

.pulse {
  animation: pulse-animation 3s infinite;
}
.fa-regular.pulse {
	border-radius: 50%;
}

@keyframes pulse-animation {
  0% {
    box-shadow: 0 0 0 0px rgba(0, 189, 189, 0.2);
  }
  100% {
    box-shadow: 0 0 0 20px rgba(0, 0, 0, 0);
  }
}

.uk-modal-full {
	background: #ffffff;
}

.uk-modal p {
	opacity: 0;
	text-align: center;
}

.uk-modal p {transition: all 3s ease 0s;}
.uk-modal p + p {transition: all 3s ease 3s;}
.uk-modal p + p + p {transition: all 3s ease 6s;}
.uk-modal p + p + p + p {transition: all 3s ease 9s;}
.uk-modal p + p + p + p + p {transition: all 3s ease 12s;}
.uk-modal p + p + p + p + p + p {transition: all 3s ease 15s;}
.uk-modal p + p + p + p + p + p + p {transition: all 3s ease 18s;}
.uk-modal p + p + p + p + p + p + p + p {transition: all 3s ease 21s;}
.chonk {font-size: 4em;}
.uk-modal.uk-open p {
	opacity: 1;
}

.shake {
	animation: .8s shake infinite alternate;
}

@keyframes shake {
  0% { transform: skewX(-15deg); }
  5% { transform: skewX(15deg); }
  10% { transform: skewX(-15deg); }
  15% { transform: skewX(15deg); }
  20% { transform: skewX(0deg); }
  100% { transform: skewX(0deg); }  
}

.uk-modal p.terms {
	padding: 30px;
	text-align: right;
	box-sizing: border-box;
}

.post {display: none;}