


body {
  background:#FCF7BE;
  margin:0;
  padding:0;
  
}


h1{
	color: #FCEEAB;
  	font-size: 90pt;
  	font-family:'Montserrat', sans-serif;  
  	font-weight: 900;
  	position: absolute;
    top: 400px;
  	left: 330px;
}


.typewriter h1 {
  overflow: hidden; /* Ensures the content is not revealed until the animation */
  white-space: nowrap; /* Keeps the content on a single line */
  margin: 0 auto; /* Gives that scrolling effect as the typing happens */
  animation: 
    typing 2s steps(40, end),
    blink-caret 5s step-end infinite;
}

@keyframes typing {
  from { width: 0 }
  to { width: 100% }
}

.page {
	height:100vh;
  display:grid;
  align-items:center;
  position: relative;
  background-color: black;
}
/*
h2{
	color: #F14824;
	font-size: 25pt;
	font-family: 'Montserrat', sans-serif;
	font-weight: 700;
	position: absolute;
	top: 50px;
	left:100px;

}*/

p{
	color: #FCEEAB;
	font-size: 18pt;
	font-family: avenir;
	text-align: left;
    /*padding-top: 320px;
    padding-right: 170px;
    padding-left: 850px;*/
    line-height: 1.7;
    position: absolute;
    top: 250px;
    width:55vw;
    left: 150px;
    right: 100px;

}

.wave{
	align-items: center;
	position: absolute;
	top: 90px;
	left: 450px;
	animation-name: floating;
    animation-duration: 3.5s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
    margin-left: 30px;
    margin-top: 10px;
	}

@keyframes floating {
    from { transform: translate(0,  0px); }
    65%  { transform: translate(0, 35px); }
    to   { transform: translate(0, -0px); }    
}


.arrowRight {

	width:100px;
	height: 87px;
	position: absolute;
	left:50px;
	bottom: 50PX;
	/*top:calc(50vh - 43px);*/

}

.arrowRight:hover
{
        -webkit-transform: scale(1.3);
        -ms-transform: scale(1.3);
        transform: scale(1.3);
        color: :#53a7ea;

}

.home{
	color: #F14824;
	position: absolute;
	top: 710px;
	left: 140px;
	font-size: 50pt;
}


