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 */

body {
  margin: 0;
  padding: 0;
  display: grid;
  background-color:rgb(138, 137, 137);
}

.container {
    display: grid;
    grid-template-areas: 
        "image1 image2 image3"
        "image4 image5 image6"
        "image7 image8 image9"
        "image10 image11 image12";
    grid-template-rows: 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr;
	padding-left: 120px;
	padding-right: 100px;
	padding-top: 33px;
  padding-bottom: 30px;
  background-color: white;
  gap: 10px;
}

/* start of nav bar */

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 */

.footer {
  font-size: small;
  color: white;
}

.banner {
  width: 1520px;
}


/* fig caption stuff */

.name {
  font-size: x-large;
  text-align: center;
  font-weight: bold;
  color: #484848;
}

img {
  width:400px;
  height: 400px;
}

.role {
  text-align: center;
  color: gray;
  font-weight: bold;
  font-size: large;
}

figure {
  transition: transform 1s;
}

figure:hover {
  transform: scale(1.05);
}

button {
  border-width: 0px;
  background-color: rgb(215, 215, 215);
  color:#333333;
}

.backtotop {
  text-align: center;
  border-width:2px;
  color: #333333;
  border-color: rgb(76, 76, 76);
}

.btt {
  padding-top: 5px;
  padding-bottom: 5px;
  padding-right: 12px;
  padding-left: 12px;
  font-size: large;
  border-radius: 15px;
}

.btt:hover {
  background-color: rgb(127, 125, 125);
  color: rgb(247, 245, 245);
}


/* media queries */

@media screen and (min-width: 1024px) {

  body {
  margin: 0;
  padding: 0;
  display: grid;
  background-color:rgb(138, 137, 137);
}

.container {
    display: grid;
    grid-template-areas: 
        "image1 image2 image3"
        "image4 image5 image6"
        "image7 image8 image9"
        "image10 image11 image12";
    grid-template-rows: 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr;
	padding-left: 120px;
	padding-right: 100px;
	padding-top: 33px;
  padding-bottom: 30px;
  background-color: white;
  gap: 10px;
}


}

@media screen and (min-width: 0px) and (max-width: 410px) {

.container {
    display: grid;
    grid-template-areas: 
        "image1"
        "image2"
        "image3"
        "image4"
        "image5"
        "image6"
        "image7"
        "image8"
        "image9"
        "image10"
        "image11"
        "image12";
    grid-template-rows: 1fr;
    grid-template-columns: 1fr;
	padding-top: 33px;
  padding-bottom: 30px;
  background-color: white;
  gap: 10px;
}

.banner {
  width: 410px;
}

.name {
  font-size: larger;
  text-align: center;
  font-weight: bold;
  color: #484848;
}

img {
  width:200px;
  height: 200px;
}

.role {
  text-align: center;
  color: gray;
  font-weight: bold;
  font-size: medium;
}


.btt {
  padding-top: 5px;
  padding-bottom: 5px;
  padding-right: 12px;
  padding-left: 12px;
  font-size: medium;
  border-radius: 15px;
}


}
