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;
}

main {
    display: grid;

    font-family: 'Dosis', sans-serif;
}

.upper {
    background-color: whitesmoke;
}


.Pizza {
    display: flex;
}

h1 {
    font-size: 45px;
    margin: auto;
}

h2 {
    margin: auto;
    text-align: center;
    font-size: 30px;
    padding: 5px;
    text-decoration: underline;
    text-underline-offset: 10px;
}

li {
    display: flex;
    margin: auto;
    transition: 1s;
    font-size: 30px;
    border-radius: 5px;
    width: 25%;
    justify-content: center;
}

nav {
    display: flex;
    margin: auto;
    background-color: rgb(203, 203, 203);
    padding: 5px;
}

nav li {
    border-left: 3px solid whitesmoke;
    border-right: 3px solid whitesmoke;
}

.right {
    margin: auto;
}


li a{
    display: block;
    padding: 10px 0;
}

li a:link, a:visited{
    color: black;
    text-decoration: none;
}

li:hover {
    background-color: whitesmoke;
    padding: 5px;
    text-decoration: underline;
    text-underline-offset: 5px;
}

.stuff {
    display: grid;
    grid-template-columns: 75% 25%;
    padding: 10px;
}

.left {
}

.right {
    margin: auto;
    line-height: 45px;
    text-align: center;
}


p {
    font-size: 25px;
    padding: 10px;
    text-align: center;
}

footer ul{
    display: flex;
    list-style-type: none; /* This is to get rid of the bullet points */
    justify-content: center;
    font-family: 'Dosis', sans-serif;
}


footer li{
    width: 200px;
    font-size: 20px;
    text-align: center;
    font-family: 'Dosis', sans-serif;
    margin: 0px 0px 0px 15px;
    border-radius: 5px;
}

.facebook {
    width: 50px;
    font-size: 20px;
    text-align: center;
    font-family: 'Dosis', sans-serif;
    margin: 10px 0px 0px 15px;
    border-radius: 5px;
    transition: 1s;
}

.facebook:link {
	color: #3b5998 ;
	background-color: transparent;
	text-decoration: none;
  }
  
.facebook:visited {
	color: #3b5998;
	background-color: transparent;
	text-decoration: none;
  }
  
.facebook:hover {
	color: black;
    padding: 5px;
}

.People {
    margin: auto;
    display: grid;
    grid-template-columns: 25% 75%;
    grid-template-rows: 1fr 1fr 1fr 1fr 1fr;
    text-align: center;
    padding: 5px;
}

.pictures {
    grid-column: 1/2;
}

.bios {
    grid-column: 2/3;
}

.onei {
    grid-row: 1/2;
}

.twoi {
    grid-row: 2/3;
}

.threei {
    grid-row: 3/4;
}

.fouri {
    grid-row: 4/5;
}

.fivei {
    grid-row: 5/6;
}

.oneb {
    grid-row: 1/2;
}

.twob {
    grid-row: 2/3;
}

.threeb {
    grid-row: 3/4;
}

.fourb {
    grid-row: 4/5;
}

.fiveb {
    grid-row: 5/6;
}

figcaption {
    text-align: center;
    font-style: italic;
    font-size: 20px;
}

.AboutUs {
    padding: 15px;
    transition: 3s;
}

iframe {
    margin: auto;
    display: flex;
    padding: 5px;
}

.videos {
    display: flex;
}

@media only screen and (mmax-width: 410px) {
   body {
    display: flex;
    margin: auto;
    text-align: center;
    }

    img {
        size: 50%;
    }
} 