@import url('https://fonts.googleapis.com/css?family=Montserrat|Press+Start+2P|Russo+One');
* {
    padding: 0;
    margin: 0;
    outline: 0;
    border: 0;
    box-sizing: border-box;
}
html, body {
    width:100%;
    height: 100%;
    
    font-family: 'Montserrat', sans-serif;
    
}
body {
    background-image: url("../images/background.jpg");
    background-attachment: fixed;
    background-position: 50% 50%;
    background-size: cover;
    background-repeat: no-repeat;
    background-color: #79C9FA;
}
h1 {
    font-size: 22px;
}
h2 {
    font-size: 20px;
}
.site {
    width: 100%;
    
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: auto auto auto;
    grid-template-areas: ". nav nav nav nav ."
                         ". main main main main ."
                         ". foot foot foot foot .";
    grid-row-gap: 10px;
}
.site > nav, .streamSite > nav {
    grid-area: nav;
    text-align: right;
    
    text-shadow: 1px 1px 1px rgba(0,0,0,0.2) ;
    
    padding: 10px;
    
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1001;
    margin: 50px 0 0 0;
}

.site > main {
    grid-area: main;
}
.site > footer {
    grid-area: foot;
    
    -webkit-border-radius: 5px;
    border-radius: 5px;
    padding: 10px 20px;
    margin-bottom: 50px;
    -webkit-box-shadow: 0 0 2px 1px rgba(0,0,0,0.5) inset;
    box-shadow: 0 0 2px 1px rgba(0,0,0,0.5) inset;
    background-color: #7FAC71;
    
    text-shadow: 1px 1px 1px rgba(0,0,0,0.2) ;
}
.footLinks {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto;
    grid-template-areas: "footItem footItem footItem";
}
.footItem {
    grid-area: footItem;
    text-align: center;
    display: inline-block;
}
.footItem a {
    text-decoration: none;
    color: black;
}
.footItem a:hover {
    color:white;
    
}
.footItem:first-child {
    text-align: left;
}
.footItem:last-child {
    text-align: right;
}
.nav {
    list-style-type: none;
    display: inline-block;
    font-family: 'Russo One', sans-serif;
    font-size: 20px;
    text-shadow: 0px 0px 0 #000, -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
}

.nav a {
    text-decoration: none;
    color: white;
}
.nav a:visited {
    color: none;
}
.nav a:hover {
    color: #FF0606;
}
.videoContainer {
    width:100%;
    color: white;
    margin-bottom: 10px;
    -webkit-box-shadow: 0 0 2px 1px rgba(0,0,0,0.5) inset;
	box-shadow: 0 0 2px 1px rgba(0,0,0,0.5) inset;
}
.videoContent {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 51%;
}
.videoContent iframe {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0; top: 0;
    
}
.videoTitleGrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto;
    grid-template-areas: "titleOne titleTwo titleThree";
    background: rgb(255,135,135); /* Old browsers */
    background: -moz-linear-gradient(top, rgba(255,135,135,1) 0%, rgba(255,6,6,1) 33%, rgba(255,6,6,1) 85%, rgba(255,6,6,1) 92%, rgba(255,6,6,1) 92%, rgba(255,135,135,1) 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top, rgba(255,135,135,1) 0%,rgba(255,6,6,1) 33%,rgba(255,6,6,1) 85%,rgba(255,6,6,1) 92%,rgba(255,6,6,1) 92%,rgba(255,135,135,1) 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, rgba(255,135,135,1) 0%,rgba(255,6,6,1) 33%,rgba(255,6,6,1) 85%,rgba(255,6,6,1) 92%,rgba(255,6,6,1) 92%,rgba(255,135,135,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff8787', endColorstr='#ff8787',GradientType=0 ); /* IE6-9 */
}
.videoTitleGrid > span {
    text-align: center;
    
}
.gameGridContainer {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto;
    grid-template-areas: "gameGridItem gameGridItem gameGridItem";
    grid-column-gap: 5px;
    margin-bottom: 5px;
}
.gameGrid {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    grid-template-areas: "gImage"
                         "gLink";
    padding: 10px;
    -webkit-box-shadow: 0 0 2px 1px rgba(0,0,0,0.5) inset;
    box-shadow: 0 0 2px 1px rgba(0,0,0,0.5) inset;
    background-color: white;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    margin-bottom: 0;
}
.gameGrid:hover {
    -webkit-box-shadow: 0 0 2px 1px rgba(0,0,0,0.5) inset;
	box-shadow: 0 0 2px 1px rgba(0,0,0,0.5) inset;
}
button:hover {
    -webkit-box-shadow: 0 0 2px 1px rgba(0,0,0,0.5) inset;
	box-shadow: 0 0 2px 1px rgba(0,0,0,0.5) inset;
}
button {
    font-family: 'Russo One', sans-serif;
    background: rgb(255,135,135); /* Old browsers */
    background: -moz-linear-gradient(top, rgba(255,135,135,1) 0%, rgba(255,6,6,1) 33%, rgba(255,6,6,1) 85%, rgba(255,6,6,1) 92%, rgba(255,6,6,1) 92%, rgba(255,135,135,1) 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top, rgba(255,135,135,1) 0%,rgba(255,6,6,1) 33%,rgba(255,6,6,1) 85%,rgba(255,6,6,1) 92%,rgba(255,6,6,1) 92%,rgba(255,135,135,1) 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, rgba(255,135,135,1) 0%,rgba(255,6,6,1) 33%,rgba(255,6,6,1) 85%,rgba(255,6,6,1) 92%,rgba(255,6,6,1) 92%,rgba(255,135,135,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff8787', endColorstr='#ff8787',GradientType=0 ); /* IE6-9 */
    color: white;
    font-size: 18px;
    padding: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
}
button:hover {
    color: black;
}
.twittericon {
    width: 24px;
    height: 24px;
    display: inline-block;
}
.gImage {
    background-color: black;
    -webkit-border-radius: 5px 5px 0 0;
    border-radius: 5px 5px 0 0;
}
.backButton {
    background-color: blue;
    padding: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    margin-bottom: 5px;
}
.gTitle a {
    color: black;
    text-decoration: none;
}
.gLink {
    text-align: center;
    background-color: black;
    color: white;
    -webkit-border-radius: 0 0 5px 5px;
    border-radius: 0 0 5px 5px;
}
.gPlatform {
    text-align: right;
}
.storeButton {
    background-color: darkgreen;
    padding: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    cursor: pointer;
}
.videoGridContainer {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto;
    grid-template-areas: "vGridItem vGridItem vGridItem";
    grid-column-gap: 5px;
    margin-bottom: 5px;

}
.videoGrid {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    grid-template-areas: "vThumb"
                         "vTitle";
    padding: 10px;
    -webkit-box-shadow: 0 0 2px 1px rgba(0,0,0,0.5) inset;
    box-shadow: 0 0 2px 1px rgba(0,0,0,0.5) inset;
    background-color: white;
    -webkit-border-radius: 5px;
    border-radius: 5px;
}
.vThumb {
    background-color: black;
    -webkit-border-radius: 5px 5px 0 0;
    border-radius: 5px 5px 0 0;
    display: block;
}
.vThumb img {
    width:100%;
    background-color: black;
    -webkit-border-radius: 5px 5px 0 0;
    border-radius: 5px 5px 0 0;
    display: block;
}
.vTitle {
    text-align: center;
    -webkit-border-radius: 0 0 5px 5px;
    border-radius: 0 0 5px 5px;
    -webkit-box-shadow: 0 0 2px 1px rgba(0,0,0,0.5) inset;
    box-shadow: 0 0 2px 1px rgba(0,0,0,0.5) inset;
}

.searchButton {
    padding: 5px;
    background-color: aqua;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    cursor: pointer;
}
.videoButton {
    background-color: aqua;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    cursor: pointer;
    padding: 5px;
}
.threeVidPreview {
    width:100%;
    padding: 5px 5px 0 5px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto;
    grid-template-areas: "threePreviewItem threePreviewItem threePreviewItem";
    grid-column-gap: 5px;
    background-color: white;
    -webkit-border-radius: 0 0 5px 5px;
    border-radius: 0 0 5px 5px;
    margin-bottom: 10px;
    -webkit-box-shadow: 0 0 2px 1px rgba(0,0,0,0.5) inset;
    box-shadow: 0 0 2px 1px rgba(0,0,0,0.5) inset;
}
.threeVidPreviewItem {
    width: 100%;
}
.video-thumbnail {
    position: relative;
    display: inline-block;
    cursor: pointer;
    width: 100%;
}
.video-thumbnail:before {
      position:absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      -webkit-transform: translate(-50%, -50%);
      content: url("../images/playbutton64x64.png");
      color: #fff;
      opacity: .6;
      text-shadow: 0px 0px 30px rgba(0, 0, 0, 0.5);
    }
 .video-thumbnail:hover:before {
      opacity: 1;
    }
  
.threeVidPreviewItem img {
    width: 100%;
    display: block;
    -webkit-radius: 5px 5px 0 0;
    border-radius: 5px 5px 0 0;
}
#activeVNav {
    color: #FF0606;
}
.titleDiv {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    grid-template-areas: "titleItem";
    -webkit-box-shadow: 0 0 2px 1px rgba(0,0,0,0.5) inset;
    box-shadow: 0 0 2px 1px rgba(0,0,0,0.5) inset;
    text-align: center;
    -webkit-border-radius: 5px 5px 0 0;
    border-radius: 5px 5px 0 0;
    background: rgb(255,135,135); /* Old browsers */
background: -moz-linear-gradient(top, rgba(255,135,135,1) 0%, rgba(255,6,6,1) 33%, rgba(255,6,6,1) 85%, rgba(255,6,6,1) 92%, rgba(255,6,6,1) 92%, rgba(255,135,135,1) 100%); /* FF3.6-15 */
background: -webkit-linear-gradient(top, rgba(255,135,135,1) 0%,rgba(255,6,6,1) 33%,rgba(255,6,6,1) 85%,rgba(255,6,6,1) 92%,rgba(255,6,6,1) 92%,rgba(255,135,135,1) 100%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(to bottom, rgba(255,135,135,1) 0%,rgba(255,6,6,1) 33%,rgba(255,6,6,1) 85%,rgba(255,6,6,1) 92%,rgba(255,6,6,1) 92%,rgba(255,135,135,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff8787', endColorstr='#ff8787',GradientType=0 ); /* IE6-9 */
}
.titleItem {
    grid-area: titleItem;
}
.titleDiv h1 {
    
    padding: 0 10px 0 10px;
    color: white;
}
.threeVidPreviewItem  {
    background-color: white;
    display: block;
    color: black;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    margin-bottom: 5px;
    text-align: center;
    -webkit-box-shadow: 0 0 2px 1px rgba(0,0,0,0.5) inset;
	box-shadow: 0 0 2px 1px rgba(0,0,0,0.5) inset;
}
.threeVidPreviewItem h3 {
    padding: 5px;
}
.logo {
    width:100%;
    max-width: 212px;
    float: left;
    margin-bottom: -100px;
    margin-top: -11px;
}
.steamIcon {
    max-height: 24px;
    max-width: 24px;
    display: inline-block;
}
.videoNav {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    grid-template-areas: "videoNavItem";
    text-align: center;
    margin-bottom: 5px;
}
.videoNav ul {
    list-style-type: none;
}
.videoNav li {
    display: inline-block;
    color: white;
}
.videoNav a {
    text-decoration: none;
    color: white;
}
.videoNav a:hover,.pagenation a:hover {
    color: #FF0606;
}
.pagenation {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    grid-template-areas: "pagenationItem";
    text-align: center;
}
.pagenation ul {
    list-style-type: none;
}
.pagenation li {
    display: inline-block;
    color: white;
    margin-right: 5px;
}
.pagenation a {
    text-decoration: none;
    color: white;
}
.leo404 {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    grid-template-areas: "fourofourItem"
                         "fourofourItem";
    -webkit-border-radius: 5px;
    border-radius: 5px;
}
.leo404 h2 {
    color: white;
    margin-bottom: 15px;
}
.resultsNote {
    color: white;
    margin-bottom: 15px;
}
.fourofour {
    width:100%;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    grid-template-areas: "fourofourItem"
                         "fourofourItem";
    background-color: white;
    -webkit-border-radius: 5px;
    border-radius: 5px;
}
.fourofour img {
    width: 100%;
    display: block;
    -webkit-border-radius: 5px 5px 0 0;
    border-radius: 5px 5px 0 0;
}
.fourofour h4 {
    padding: 5px;
}
.gameimage {
    width: 100%;
    display: block;
    background-color: black;
    -webkit-border-radius: 5px 5px 0 0;
    border-radius: 5px 5px 0 0;
    
}
.searchInput {
    width: 100%;
    text-align: right;
    margin-bottom: 15px;
}
input[type=text] {
    padding: 6px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    padding-right: 29px;
    display: inline-block;
    -webkit-box-shadow: 0 0 2px 1px rgba(0,0,0,0.5) inset;
    box-shadow: 0 0 2px 1px rgba(0,0,0,0.5) inset;
}
input[type=number]{
    padding: 6px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    display: inline-block;
    -webkit-box-shadow: 0 0 2px 1px rgba(0,0,0,0.5) inset;
    box-shadow: 0 0 2px 1px rgba(0,0,0,0.5) inset;
}
input[type=password] {
    padding: 5px 5px 6px 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    padding-right: 29px;
    display: inline-block;
    -webkit-box-shadow: 0 0 2px 1px rgba(0,0,0,0.5) inset;
    box-shadow: 0 0 2px 1px rgba(0,0,0,0.5) inset;
}
input[type=email] {
    padding: 6px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    display: inline-block;
    -webkit-box-shadow: 0 0 2px 1px rgba(0,0,0,0.5) inset;
    box-shadow: 0 0 2px 1px rgba(0,0,0,0.5) inset;
}
input[type=submit] {
    margin-left: -29px;
    margin-top: 0px;
    -webkit-border-radius: 5px;
    border-radius: 0 5px 5px 0;
    display: inline-block;
    padding-top: 4px;
    padding-left: 4px;
    padding-right: 5px;
    padding-bottom: 6px;
    background-color: #FF0606;
    cursor: pointer;
    -webkit-box-shadow: 0 0 2px 1px rgba(0,0,0,0.5) inset;
    box-shadow: 0 0 2px 1px rgba(0,0,0,0.5) inset;
}
input[type=submit]:hover {
    color: black;
}
.searchGridContainer {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto;
    grid-template-areas: "sGridItem sGridItem sGridItem";
    grid-column-gap: 5px;
    margin-bottom: 5px;
}   
.searchGridGame {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    grid-template-areas: "gImage"
                         "gImage"
                         "gLink";
    padding: 10px;
    -webkit-box-shadow: 0 0 2px 1px rgba(0,0,0,0.5) inset;
    box-shadow: 0 0 2px 1px rgba(0,0,0,0.5) inset;
    background-color: white;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    margin-bottom: 0;
} 
.searchGridVideo {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    grid-template-areas: "vThumb"
                         "vTitle";
    padding: 10px;
    -webkit-box-shadow: 0 0 2px 1px rgba(0,0,0,0.5) inset;
    box-shadow: 0 0 2px 1px rgba(0,0,0,0.5) inset;
    background-color: white;
    -webkit-border-radius: 5px;
    border-radius: 5px;
} 
.welcomeGridContainer {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto;
    grid-template-areas: "msg msg msg";
    
}

.avatar {
    width: 100%;
    text-align: center;
    grid-area: avatar;
    z-index: 1;
}
.avatar img {
    
    margin: 0 0px 0px 0;
    width: 100%;
    max-width: 80px;
    margin-top: -40px;
    margin-bottom: -30px;
}
.msg {
    width: 100%;
    grid-area: msg;
    box-shadow: 0 0 2px 1px rgba(0,0,0,0.5) inset;
    margin-bottom: 15px;
    padding: 10px 20px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    background-color: white;

}
.msg h1 {
    text-align: center;
    margin-bottom: 5px;
}
.msg p {
    text-indent: 25px;
    margin-bottom: 15px;
}
.downloadInfoContainer {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto auto auto;
    grid-template-areas: "downloadName"
                         "downloadType"
                         "downloadCount"
                         "downloadDescription"
                         "downloadMsg";
    background-color: #597e35;
    border-radius: 5px;
    padding: 10px;
}
.downloadGrid {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto auto auto;
    grid-template-areas: "downloadName"
                         "downloadType"
                         "downloadCount"
                         "downloadLink"
                         "downloadDescription";
    background-color: #597e35;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    padding: 10px 20px;
    margin-bottom: 5px;

}
.congrats {
    width: 100%;
    margin-bottom: 15px;
}
.congrats img {
    width: 100%;
}
.congrats h2 {
    color: white;
    text-align: center;
    margin-bottom: 15px;
}
#online {
    
    -webkit-animation-name: blinkinggreen;
    -webkit-animation-duration: 1.75s;
    animation-name: blinkinggreen;
    animation-duration: 1.75s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
}
#busy {
    -webkit-animation-name: blinkingred;
    -webkit-animation-duration: 2s;
    animation-name: blinkingred;
    animation-duration: 2s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-iteration-count: infinite;
}
#away {
    -webkit-animation-name: blinkingyellow;
    -webkit-animation-duration: 2s;
    animation-name: blinkingyellow;
    animation-duration: 2s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-iteration-count: infinite;
}
#snooze {
    -webkit-animation-name: blinkingfade;
    -webkit-animation-duration: 2s;
    animation-name: blinkingfade;
    animation-duration: 2s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-iteration-count: infinite;
}
#lookingtotrade {}
#lookingtoplay {}
#status {
    text-align: left;
    width: 100%;
}
.liveChat {
    width: 100%;
    display: block;
}
.liveChat iframe {
    display: block;
    width: 100%;
    height: 100vh;
}
.liveStreamLink {
    width: 100%;
    text-align: right;
    margin-bottom: 15px;
}
.streamSite {
    width: 100%;
    height: 100vh;
    display: grid;
    grid-template-columns: 85% 15%;
    grid-template-rows: 1fr;
    grid-template-areas: "main chat";
    background-color: black;
}
.streamSite > nav {
    grid-area: nav;
}
.streamSite > main {
    grid-area: main;
    width: 100%;
}
.streamSite > footer {
    grid-area: chat;
    width: 100%;
}
.streamVideo {
    width: 100%;
    display: block;
    height: 100vh;
}
.streamVideo iframe {
    width: 100%;
    height: 100%;
    display: block;
}
.streamBack {
    position: absolute;
    z-index: 1002;
    margin-top: -43px;
    margin-left: 12px;
}
#audio {
    display: none;
}
.calendar {
    width: 100%;
}
@-webkit-keyframes blinkinggreen{
    0% {
        fill: black;
    }
    50% {
        fill: #67933e;
    }
    100% {
        fill: black;
    }
}
@keyframes blinkinggreen {
    0% {
        fill: black;
    }
    50% {
        fill: #67933e;
    }
    100% {
        fill: black;
    }
}
@-webkit-keyframes blinkingred {
    0% {
        fill: black;
    }
    50% {
        fill: darkred;
    }
    100% {
        fill: black;
    }
}
@keyframes blinkingred {
    0% {
        fill: black;
    }
    50% {
        fill: rgb(214, 20, 20);
    }
    100% {
        fill: black;
    }
}
@-webkit-keyframes blinkingyellow {
    0% {
        fill: black;
    }
    50% {
        fill: rgb(208, 223, 8);
    }
    100% {
        fill: black;
    }
}
@keyframes blinkingyellow {
    0% {
        fill: black;
    }
    50% {
        fill: rgb(208, 223, 8);
    }
    100% {
        fill: black;
    }
}
.match-game-item {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto auto auto auto;
    grid-template-areas: "match-game-id match-game-timestamp"
                         "match-game-title match-game-title"
                         "match-game-mods match-game-winner"
                         "match-game-players match-game-players";
    background-color: white;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    margin-top: 15px;
    padding: 10px 20px;
    -webkit-box-shadow: 0 0 2px 1px rgba(0,0,0,0.5) inset;
    box-shadow: 0 0 2px 1px rgba(0,0,0,0.5) inset;
    text-align: left;
}
.match-game-id {
    width: 100%;
    grid-area: match-game-id;
}
.match-game-timestamp {
    width: 100%;
    grid-area: match-game-timestamp;
}
.match-game-title {
    width: 100%;
    grid-area: match-game-title;
}
.match-game-mods {
    width: 100%;
    grid-area: match-game-mods;
}
.match-game-winner {
    width: 100%;
    grid-area: match-game-winner;
}
.match-game-players {
    width: 100%;
    grid-area: match-game-players;
}
.minecraftList {
    text-indent: 25px;
    list-style: none;
}
@media only screen and (max-width: 1200px) {
    .site {
        width: 100%;
        display: grid;
        grid-template-columns: 10% 1fr 1fr 10%;
        grid-template-rows: auto auto auto auto;
        grid-template-areas: ". head head ."
                             ". nav nav ."
                             ". main main ."
                             ". foot foot .";
        grid-row-gap: 10px;
    }
}
@media only screen and (max-width: 840px) {
    .site {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: auto auto auto auto;
        grid-template-areas: "head head head head"
                             "nav nav nav nav"
                             "main main main main"
                             "foot foot foot foot";
        grid-row-gap: 10px;
    }
    .videoGrid {
        width: 100%;
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: auto auto;
        grid-template-areas: "vTitle"
                             "vThumb";
        padding: 10px;
        margin-bottom: 5px;
    }
    
    .threeVidPreview {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
        grid-template-areas: "threePreviewItem"
                             "threePreviewItem"
                             "threePreviewItem";
        
    }
    .videoGridContainer {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
        grid-template-areas: "vGridItem"
                             "vGridItem"
                             "vGridItem";
        grid-column-gap: 5px;
        margin-bottom: 0;
    }
    .gameGridContainer {
        width: 100%;
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        grid-template-areas: "gameGridItem"
                             "gameGridItem"
                             "gameGridItem";
        grid-column-gap: 5px;
        margin-bottom: 0;
    }
    .gameGrid {
        width: 100%;
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: auto auto;
        grid-template-areas: "gImage"
                             "gLink";
        margin-bottom: 5px;
    }
    input[type=text] {
        width: 50%;
    }
   .searchInput {
       text-align: right;
   }
   .nav {
       font-size: 16px;
   }
   .footLinks {
        display: block;
        width: 100%;
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto auto;
        grid-template-areas: "footItem"
                         "footItem"
                         "footItem"
                         "footItem";
        text-align: center;
    }
    .footItem:first-child {
        text-align: center;
    }
    .footItem:last-child {
        text-align: center;
        margin-top: 5px;
    }
    .footItem {
        display: block;
    }
    .video-thumbnail:before {
        content: url("../images/playbutton48x48.png");
    }
    .welcomeGridContainer {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto;
        grid-template-areas: "avatar"
                             "msg";
        
    }
    #status {
        text-align: center;
        width: 100%;
    }
}
@media only screen and (max-width: 545px) {
    .nav {
        display: list-item;
    }
}
