

body {
	background-color: black;
	background-image: url("bg copy.jpg");
	background-repeat: repeat;
	background-attachment: fixed;
	text-align: center;
	font-family: "IBM Plex Sans", sans-serif;
	margin-top: 100px;
}

h1, h2 {
	color: #ED6A5A;
	font-size: 500%;
	margin-bottom: 0px;
	margin-top: 10px;
	font-family: "Newsreader", serif;
}

h1 small, h2 small {
	font-size: 50%;
	font-family: "Newsreader", serif;
}

h3 {
	color: #703136;
	font-family: "Newsreader", serif;
}

h3.tagline {
	margin-top: -10px;
	margin-left: 200px;
	font-size: 150%;
}

.borderbox {
	text-align: left;
	border-radius: 10px;
	display: inline-block;
	margin-top: 50px; 
	margin-bottom: 50px;
	padding-left: 40px;
	padding-right: 40px;
	padding-top: 20px;
	padding-bottom: 20px;
	border: 1px solid #233835;
	background-color: #000;
	color: #9BC1BC;
	font-size: 125%;
	font-weight: 100;
	min-width: 280px;
	max-width: 520px;
	clear: right;
	line-height: 140%;
}

.borderbox input {
	padding: 10px;
	width: 95%;
}

input[type=submit] {
	padding:5px 15px;
	background:#ccc;
	color: black;
	border:0 none;
	cursor:pointer;
	-webkit-border-radius: 5px;
	border-radius: 5px;
}

.borderbox img {
	min-width: 280px;
	max-width: 520px;
}

.spamtrap { 
	display: none;
}

.footer {
	display: inline-block;
	text-align: center;
	min-width: 260px;
	max-width: 450px;
	color: #703136;
}

.footer a {
	color: #703136;
}

.loader {
	  width: 48px;
	    height: 48px;
	      border-radius: 50%;
	        display: inline-block;
		  position: relative;
		    border: 2px solid #FF3D00;
		      box-sizing: border-box;
		        animation: rotation 1s linear infinite;
		}
		.loader::after {
			  content: '';  
			    box-sizing: border-box;
			      position: absolute;
			        left: 4px;
				  top: 4px;
				    border: 2px solid #FFF;
				      width: 12px;
				        height: 12px;
					  border-radius: 50%;
				  }
				      
				  @keyframes rotation {
					    0% {
						        transform: rotate(0deg);
							  }
							    100% {
								        transform: rotate(360deg);
									  }
								  } 



