html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* end of css reset */

/* start of nav bar */

body {
  margin: 0;
  padding: 0;
  background-color: rgb(138, 137, 137);
}

ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color: #333333;
}

ul li {
  float: left;
}

ul li a {
  display: block;
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

ul li a:hover {
  background-color: #111111;
}

ul {
  display: flex;
  gap: 160px;
  justify-content: center;
}

li {
  font-size: large;
}

/* end of nav bar */

.banner {
    width: 1536px;
}

.dashed {
    border-color:#333333;
    border-width: 2px;
    border-style: dashed;
}

h1 {
  font-size: xx-large;
  text-align: center;
  font-weight: bold;
  color:#333333;
}

img {
  float: left;
  width: 230px;
}

p {
  font-size: x-large;
  text-align: left;
  color: #333333;
}


.description {
  padding-top: 31px;
  padding-bottom: 31px;
}

.footer {
  font-size: small;
  color: white;
}

.whiteback {
  background-color: white;
}


/* media queries */

@media screen and (min-width: 1024px) {


}

@media screen and (min-width: 0px) and (max-width: 410px) {

.banner {
    width: 410px;
}

.dashed {
    border-color:#333333;
    border-width: 2px;
    border-style: dashed;
}

h1 {
  font-size: x-large;
  text-align: center;
  font-weight: bold;
  color:#333333;
}

img {
  float: left;
  width: 130px;
}

p {
  font-size: larger;
  text-align: left;
  color: #333333;
}


.description {
  padding-top: 31px;
  padding-bottom: 31px;
}

.footer {
  font-size: x-small;

}

}