body
{
	margin:0px;
	font-family: 'Poiret One', cursive;
	perspective:500px;
	-webkit-perspective:500px;
}

#svgDisplay,div#logo {
    position: fixed;
    left: 25%;
    width: 50%;
}
div#logo  {
    opacity:0;
}
div#logo > img {
    width: 100%
}

.transform
{
	-webkit-animation: transform-me 1.8s ease forwards;
	animation: transform-me 1.8s ease forwards;
}

@-webkit-keyframes transform-me
{
	0%
	{
		transform: rotateY(-90deg) rotateX(90deg);
	}
	
	100%
	{
		transform: rotateY(0deg) rotateX(0deg);
	}
}

@keyframes transform-me
{
	0%
	{
		transform: rotateY(-90deg) rotateX(90deg);
	}
	
	100%
	{
		transform: rotateY(0deg) rotateX(0deg);
	}
}

.fade-in
{
	-webkit-animation: fade-in 1s ease forwards;
	animation: fade-in 1s ease forwards;
}

@-webkit-keyframes fade-in
{
	0%
	{
		opacity:0;
	}
	
	100%
	{
		opacity:1;
	}
}

@keyframes fade-in
{
	0%
	{
		opacity:0;
	}
	
	100%
	{
		opacity:1;
	}
}

.fade-out
{
	-webkit-animation: fade-out 1s ease forwards;
	animation: fade-out 1s ease forwards;
}

@-webkit-keyframes fade-out
{
	0%
	{
		opacity:1;
	}
	
	100%
	{
		opacity:0;
	}
}

@keyframes fade-out
{
	0%
	{
		opacity:1;
	}
	
	100%
	{
		opacity:0;
	}
}

div#text {
	opacity:0;
    float: left;
    width: 100%;
    text-align: center;
    margin-top: 300px;
    line-height: 16pt;
}
div#text.text-in {
    -webkit-animation: text-in 1s ease forwards;
    animation: text-in 1s ease forwards;
}

@-webkit-keyframes text-in
{
	0%
	{
		opacity:0;
		padding-top:60px;
	}
	
	100%
	{
		opacity:1;
		padding-top:0px;
	}
}

@keyframes text-in
{
	0%
	{
		opacity:0;
		padding-top:60px;
	}
	
	100%
	{
		opacity:1;
		padding-top:0px;
	}
}

@media screen and (max-width:800px)
{
	#svgDisplay,div#logo {
		position: fixed;
		left: 5%;
		width: 90%;
	}
	
	div#text
	{
		margin-top:230px;
	}
}

@media screen and (min-width: 600px) and (max-width:800px)
{
	#svgDisplay,div#logo {
		left: 15%;
		width: 70%;
	}
}

@media screen and (max-width:800px) and (orientation:portrait)
{
	div#text
	{
		margin-top:180px;
	}
}

@media screen and (max-width:480px)
{
	div#text
	{
		margin-top:180px;
	}
}

@media screen and (min-width:481px) and (max-width:599px)
{
	div#text
	{
		margin-top:220px;
	}
}

h3, h4 {
    margin: 4px;
}

a {
    color: black;
    background-color: orange;
    padding: 8px;
    text-decoration: none;
    border-radius: 8px;
    text-shadow: 0px 0px 5px black;
    transition: all 0.5s ease;
}

a:hover
{
	box-shadow: inset 0px 0px 5px 0px red;
}


p {
    line-height: 33pt;
    font-weight: 800;
}
