<style>

    html, body {
    height: 100vh;
    width: 100vw;
    margin: 0;
    }

    p1,h2,h3, a {
        font-family: Arial, sans-serif;
        color: white;
        overflow: hidden;
        margin: 0;
        font-size: .72em;
    }

    p2 {
        font-family: Arial, sans-serif;
        color: white;
        overflow: hidden;
        margin: 0;
        font-size: .66em;
    }

    body {
    	color: white;
    	font-family: sans-serif;
    	background-color: black;
    	margin: 0;
    }

    p {
    	/*text-align: center;*/
    	/*line-height: 100px;*/
    	font-size: .66em;
    	margin: 0;
    }

    h1 {
    	text-align: left;
    	text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
    	font-size: 11em;
    	margin: 0;
    	position: relative;
        letter-spacing: -2.5vw;
        margin: 0.05em;
        margin-top: 0.01em;
        margin-left: 0;
    	/* Add a little extra padding to each letter to create a gap between them */
    	letter-spacing: -30px;
    }
    /*
    @media only screen and (min-width: 768px) {
    h1 {
    font-size: 100px;
    letter-spacing: 0px;
    }
    }
    @media only screen and (min-width: 1024px) {
    h1 {
    font-size: 14em;
    letter-spacing: -.15em;
    }
    }
    */

    /*##################################################*/

    /* Use a separate span class to target each letter in the header */
    .h1-letter {
    	display: inline-block;
    	/* Add a transition effect to the color property */
    	transition: color 0.33s ease-in-out, transform 0.33s ease-in-out;
    }

    /* Change the color of each letter when it's hovered over */
    .h1-letter:hover {
    	color: grey;
    	transform: translateY(-10px);
    }

    /*##################################################*/

    img {
    	max-width: 9em;
    	max-height: 9em;
    }

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

    a:link {
    	text-align: center;
    	color: white;
    }

    a:visited {
    	text-align: center;
    	color: white;
    }

    /*##################################################*/

    .center-text {
        font-size: .9em;
    	text-align: center;
    	display: block;
    	align-items: center;
        justify-content: center;
        margin-top: .1em;
        margin-bottom: .1em;
    	padding: 1em;
    }



    nav {
    	background-color: #000000c4;
    	overflow: hidden;
    	height: 3em;
    }

    nav a {
    	float: left;
    	display: block;
    	color: white;
    	text-align: center;
    	height: 3em;
    	letter-spacing: .2em;
    	padding: 1em 1em;
    	text-decoration: none;
    }

    nav a:hover {
    	background-color: grey;
    }

    /*##################################################*/

    footer {
        display: flex;
        align-items: center;
        justify-content: center;
    	position: fixed;
    	bottom: 0;
    	left: 0;
    	right: 0;
    	background-color: #000000c4;
    	text-align: center;
    	height: 2em;
    	margin-top:.1em;
    }

    /*##################################################*/

    #myIframe {
    	position: fixed;
    	top: 0;
    	left: 0;
    	z-index: -1;
    	width: 100%;
    	height: 100%;
    	border: none;
    }
    @keyframes fade {
    from {
        opacity: 0;}
    to {
        opacity: 1;}
    }

    .page {
      opacity: 0;
      animation: fade 0.5s ease-in-out forwards;
      transition: opacity 1s ease-in-out;
    }

    .page.active {
      opacity: 1;
    }
    .form-group {
    width: 100%;
    margin-bottom: 20px;
    }
    .hover-effect {
    color: grey;
    transform: translateY(-10px);
    }

    /*##################################################*/

    label {
    display: block;
    font-size: 2em;
    margin-bottom: -0.01em;
    letter-spacing: .01em;
    font-style: italic;
    }

    /*##################################################*/

    input[type="text"],
    input[type="email"],
    textarea {
      width: 100%;
      padding: .3em;
      font-size: 2em;
      margin-bottom: .1em;
      background-color: dimgrey;
      /*height: .5em;*/
    }
    input::placeholder,
    textarea::placeholder {
    margin: 0;
    color: #999;
    }

    /*##################################################*/

	.active {
	color: red;
	transform: translateY(-25px);
	}
	::-webkit-scrollbar {
    display: none;
    }
</style>