/* reset*/
html, body, ul, ol, li, p, h1, h2, h3, h4, h5, h6, form, fieldset {
	margin: 0;
	padding: 0;
	border: 0;
	
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section { 
    display: block;
	margin: 0;
}

img {
	max-width: 100%;
	height: auto;
	border:0;
}
.video embed,
.video object,
.video iframe {
	width: 100%;
	height: auto;
}
video {
	width: 90%;
	height: auto;
}
* {
  box-sizing: border-box;
}
body {
    font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-size: 100%;
    color: #000;
}
header {
    background-color: #fff;
    margin: 1% 0;
}
.centerit {
    text-align: center;
    margin: 0 auto;
}
.row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: 100%;
}
.column {
  display: flex;
  flex-direction: column;
  flex-basis: 100%;
  flex: 1;
}
.double-column {
  display: flex;
  flex-direction: column;
  flex-basis: 100%;
  flex: 2;
}
/** Keep the image from stretching in flex column**/
.nostretch {
	align-self: center;
}
.button {
  background-color: #FFD700;
  border: none;
  color: #000;
  padding: 20px;
  text-align: center;
  text-decoration: none;
   display: inline-block;
  margin: 4px 2px;
  cursor: pointer;
  border-radius: 8px;
    font-size: 100%;
  font-weight: 700;
     text-transform: uppercase;
     transition-duration: 0.4s;
   
}
.button:hover {
  background-color: #FF0000;
  color: white;
}
.logo {
    display: block;
    margin: 0 auto;
}

