@font-face {
  font-family: "font1";
  src: url("font1.ttf");
  }
  
 @font-face {
  font-family: "font2";
  src: url("font2.ttf");
  }
  
* {	box-sizing: border-box;	}

body {
	background-image: url(bg.png);
	background-attachment: fixed;
	background-size: 100vw 100vh;
	color: black;
	font-family: font2;
	font-size: 2vmin;
	width: 100vmax;
	text-align: center;
	margin: auto;
	padding: 0;
	overflow-x: hidden;
	}	
	
hr {	
	margin-top: 3em;
	margin-bottom: 3em;
	width: 100%;
	height: 1px;
	display: block;
	border: 0;
	}	
	
li {	margin-bottom: 0.5em;}

a {color:black;}

.padding {height: 30vh;}

.goldbar {
	background-image: url(gold.png);
	background-attachment: fixed;
	background-size: 100vw 100vh;
	width: 100%;
	box-shadow: 0 0 1em gray;
	}
	
.goldbox {
	background-image: url(gold.png);
	background-attachment: fixed;
	background-size: 100vw 100vh;
	width: 25%;
	box-shadow: 0.5em 0.5em 0.5em silver;
	display: inline-block;
	margin: 1em;
	padding: 1em;
	border-radius: 0.5em;
	border: 1px solid gray;
	}
	
.goldbutton {
	width: auto;
	font-weight: bold;
	display: inline-block;
	padding: 1em;
	border-left: 1px solid black;
	text-shadow: -1px -1px 1px white;
	}

.goldbutton:hover {
	background: #fff4;
	}
	
.arrow {
	background-image: url(arrow.png);
	padding-left: 4vmin;
	}
	
.bigbox {
	width: 100%;
	background-attachment: fixed;
	background-size: cover;
	background-position: center top;
	background-repeat: no-repeat;
	padding-top: 30vmin;
	padding-bottom: 30vmin;
	border: 1px solid black;
	}
	
.bigtext {	
	width: 80%;
	margin: auto;
	font-size: 300%;
	font-weight: bold;
	font-style: italic;
	text-shadow: 0 0 0.3em white, 0 0 0.3em white, 0 0 0.3em white;
}

.btn {
	background: #73146d;
	color: white;
	box-shadow: 0.2em 0.2em 0.5em #0008;
	border-radius: 0.5em;
	padding: 1em 3em 1em 3em;
	display: block;
	margin: 2em auto 2em auto;
	display: inline-block;
	font-weight: bold;
	
	animation-name: flash;
	animation-duration: 5s;
	animation-delay: 0s;
	animation-iteration-count: infinite;
	}	
	
.btn:hover {
	background: rgb(155, 60, 149);
	}
	
.text {
	width: 80%;
	margin: auto;
	text-align: left;
	}
	
.floatimg {
	width: 30%;
	display: inline-block;	
	}
	
.floattext {
	vertical-align: top;
	width: 69%;
	display: inline-block;
	}
	
.arrow {
	width: 1em;
	height: 1em;
	display: inline;
	background-image: url(arrow.png);
	background-repeat: no-repeat;
	background-size: 1em;
	padding-right: 0.5em;
	}
	
.icon {
	width: 3em;
	height: 3em;
	border-radius: 0.5em;
	margin: 1em;
	}
		
	
@keyframes flash {
	0% { background:   #e628da;}
	25% { background:  #73146d;}
	50% { background:  #73146d;}
	75% { background:  #73146d;}
	100% { background: #73146d;}
	}
	
	
@media only screen and (Orientation: Portrait) {

body {
	font-size: 4vmin;
	width: 99vmin;
}

.goldbox {
	width: 80%;
	}
	
.bigtext {	
	font-size: 200%;
}

.floatimg {
	width: 100%;	
	}
	
.floattext {
	width: 100%;
	}
	
.vibtext {
	font-size:350%;
	}
	
}