@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300&display=swap');

html, body {
	font-size:16px;
	/* whole screen image */
	height: 100%;
}

body {
  background-color:#dddddd;
  font-family: 'Roboto', sans-serif;
}

.pagewidth {
	max-width:1100px;
	background-color:#dddddd;
}

.menufont {
	font-family:"Segoe UI",Arial,sans-serif;  /* same as w3 h1 font */
	/*font-weight:700; */
	font-size:18px;
}
.menuspace {
	padding-top: 18px;
	padding-bottom: 4px;
}

h1, h2, h3, h4 {
    color: #666666;
    font-weight: 700;
}
h1 {
	display: inline;	/* underline will not take a whole line */
	border-bottom: 6px solid #666666;
}

.videoWrapper {
}
@media screen and (max-width: 600px) {


	/* display responsively youtube on small screen 
	have <div> tag outside ifram
	*/
	.videoWrapper {
	  position: relative;
	  padding-bottom: 56.25%; /* 16:9 */
	  height: 0;
	}
	
	.videoWrapper iframe {
	  position: absolute;
	  top: 0;
	  left: 0;
	  width: 100%; 
	  height: 100%;
	}

}