/*

Title of project
Author's name

Some description of the CSS styling

*/

/* Actual CSS goes below here! */
@charset "UTF-8";

/*!
 * animate.css -http://daneden.me/animate
 * Version - 3.5.2
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2017 Daniel Eden
 */

.animated {
  animation-duration: 4s;
  animation-fill-mode: both;
}

@keyframes fadeInDownBig {
  from {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.fadeInDownBig {
  animation-name: fadeInDownBig;
}

@keyframes fadeInUpBig {
  from {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.fadeInUpBig {
  animation-name: fadeInUpBig;
}
html {
  background: url(../images/candles.jpg) no-repeat center center fixed;
 -webkit-background-size: cover;
 -moz-background-size: cover;
 -o-background-size: cover;
 background-size: cover;
}

h1 {

	color: white;
	font-size: 40px;
	font-family: helvetica, sans-serif;
	text-align: left;
  	padding: 30px;
	position: absolute;
	right: 20px;

}

h2 {
 	color: white;
	font-size: 30px;
 	font-family: helvetica, sans-serif;
 	text-align: left;
	padding: 20px;
	position: absolute;
	bottom: 20px;

}
