* { margin:0; padding:0; }

html {
	width:100vw; 
	height:100vh; 
} /* just to be sure these are full screen*/

body { 
	width:100vw; 
	height:100vh;     
	font-family: Arial, sans-serif;
	color: white;
	display: relative;
	justify-content: center;
	align-items: center;
	background-color:black;
}
canvas { 
   overflow: hidden;
   width:100vw;
   height:100vh;
   min-height: 1100px;
   z-index: 2;
   /*
   background-image: url('cool_bg_landscape.png');
   background-size: cover;
   background-position: center;
   background-repeat: no-repeat;
   */
}

h1 {
	font-size: 5em;
}

h2 {
	font-size: 3.5em;
}

.content {
  position: absolute;
  top: 1%;
  left: 50%;
  transform: translate(-50%, -1%);
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.5); /* Optional overlay */
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  height: 500px;
}

/*Subscription to Email NewsLetter*/
.form-group {
	margin-bottom: 15px;
}
label {
	display: block;
	margin-bottom: 5px;
	font-weight: bold;
	font-size: 2.5em;
}
input[type="email"] {
	width: 100%;
	padding: 10px;
	border: 1px solid #ddd;
	border-radius: 4px;
	font-size: 2.5em;
}
button {
	background-color: #007bff;
	color: white;
	padding: 10px 20px;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	font-size: 2.5em;
}
button:hover {
	background-color: #0056b3;
}
.message {
	margin-top: 15px;
	padding: 10px;
	border-radius: 4px;
	display: none;
}
.success {
	background-color: #d4edda;
	color: #155724;
	border: 1px solid #c3e6cb;
}
.error {
	background-color: #f8d7da;
	color: #721c24;
	border: 1px solid #f5c6cb;
}