<!DOCTYPE html>
<html lang="en">
<head>
<style>
h1,h2,h3,h4,h5,h6 {font-family: "Georgia"}
body {font-family: "Tahoma"}

body {
    background-color: white;
}

h1 {
    font-family: "Georgia";
  	font-weight: 700;
	font-size: 40px;
	line-height: 1.3em/52px;
  	text-align: center;
  	color: Black;
    margin-left: 20px;
    border-style: outset;
  	background-color: #FFFFFF;
}


p {
  	text-align: center;  
  	background-color: white;
  	margin: 25px 50px;
}

/* Horizontal Line Break */
hr { 
    display: block;
    margin-top: 0.5em;
    margin-bottom: 0.5em;
    margin-left: auto;
    margin-right: auto;
    border-style: inset;
    border-width: 2px;
}

/* Text Box */
.boxed {
  border: 10px solid black ;
}

/* Button */
.button {
    background-color: #cd2026;
    border: none;
    color: white;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
}

.button:hover {
    background-color: #981b1e; /* Dark Red */
    color: white;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 35px;
    height: 0;
    overflow: hidden;
}

.video-container iframe {
    position: absolute;
    top:0;
    left: 0;
    width: 100%;
    height: 100%;
}


</style>
</head>
</body>
</html>



