/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

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;
}






body {
    margin: 0;
    font-family: 'Trebuchet MS';
    background-color: #ffffff;
}


ul {
    list-style-type: none;
    display: flex;
    flex-flow: row nowrap;
    justify-content:space-around;
}

li a {
    color: rgb(255, 102, 0);
}

p {
    padding: 15px;
    background-color: rgb(0, 149, 255);
    border-radius: 5px;
    color: rgb(0, 149, 255);
    margin: 25px;
    text-align: center;
    flex: 1 1 0;
}

* {
    box-sizing: border-box; 
  }
  body {
    display: flex;
    min-height: 100vh;
    flex-direction: column;
    margin: 0;
  }
  #main {
    display: grid;
  }
  #main > article {
    flex: 1;
  }
  #main > nav, 
  #main > aside {
    flex: 0 0 20vw;
    background: rgb(0, 225, 255);
  }
  #main > nav {
    order: -1;
  }
  article, nav, aside {
    padding: 1em;
  }

.grid-container {
display: grid;
grid-template-areas:
'Banner Banner Banner'
'YT YT YT'
'Movies Bob Stone';

gap: 10px;
background-color: #282828;
padding: 50px;
}

.grid-container > div {
background-color: rgba(151, 253, 253, 0.9);
text-align: center;
padding: 20px 0;
font-size: 30px;
}

section {
    display: flex;
}

.Shel {
    grid-area:Shel
}

.Banner {
    grid-area:Banner
}

.YT {
    grid-area:YT
}

.Zac {
    grid-area:Zac
}

.Bob {
    grid-area:Bob
}

.Movies {
    grid-area:Movies
}

.Rugby {
    grid-area:Rugby
}

.Stone {
    grid-area:Stone
}