html,body {
	margin:0;
	padding:0;
	height:100%; /* needed for container min-height */}

body
{background-image: -moz-linear-gradient(100% 100% 90deg, #0d2025, #0e4c5b); /*bottom to top*/
background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#0e4c5b), to(#0d2025));/*top to bottom*/
color: #fff;
font-family: "Lucida Grande", Verdana, Arial, sans-serif;
height: 100%}

body a
{color: #cbcbcb;
text-decoration: underline;}
body a:hover
{color: #aa9364;
text-decoration: underline;}

.wrapper
{	position:relative; /* needed for footer positioning*/
	margin:0 auto; /* center, not in IE5 */
		height:auto !important; /* real browsers */
	height:100%; /* IE6: treaded as min-height*/

	min-height:100%; /* real browsers */
	}

.larger, .larger a
{ color: #fff; font-style: italic; text-decoration: underline; font-size: 48px; color: white; font-family: Georgia, "Times New Roman", Times, serif; line-height: 35px; text-shadow: #000 3px 3px 3px;}

#message {padding-top: 100px;}

.wensen
{
	margin: 0px auto;
	margin-top: 150px;
	background: rgba(0, 0, 0, 0.8);
	/* Create a round layout */
	-webkit-border-radius: 30px;
	-moz-border-radius: 30px;
	font-size: 180%;
	text-align: center;
	padding: 6px 10px;
}


.smaller
{font-size: 12px;text-shadow: #000 3px 3px 3px;}

.more a
{text-shadow: #000 3px 3px 3px;	font-size: small; text-decoration: none; font-family: Georgia, "Times New Roman", Times, serif; }
img
{border-color: white;}


.wensen, .wensen a
{text-shadow: #000 3px 3px 3px; font-size: larger; text-decoration: none; font-family: Georgia, "Times New Roman", Times, serif; }


.card
{width: 1000px;
z-index: 100;
position: absolute;
text-align: center;
}

img{
/* for firefox, safari, chrome, etc. */
-webkit-transform: rotate(-2deg);
-moz-transform: rotate(-2deg);
}

/* The flip card container - set the width and height to whatever you want. We have added the border property to demonstrate that the flip itself goes out of the box on hover (remove perspective if you don't want the 3D effect */
.flip-card {
  background-color: transparent;
  width: 1500px;
  height: 708px;
  perspective: 1000px; /* Remove this if you don't want the 3D effect */
  margin: 0px auto;
  padding-top: 100px;
}

/* This container is needed to position the front and back side */
.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}

/* Do an horizontal flip when you move the mouse over the flip box container */
.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

/* Position the front and back side */
.flip-card-front, .flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden; /* Safari */
  backface-visibility: hidden;
}

/* Style the front side (fallback if image is missing) */
.flip-card-front {
}

/* Style the back side */
.flip-card-back {
  transform: rotateY(180deg);
}