@import url('https://fonts.googleapis.com/css?family=Montserrat|Russo+One');
* {
    padding: 0;
    margin: 0;
    outline: 0;
    border: 0;
    box-sizing: border-box;
}
html, body {
    width:100%;
    height: 100%;
    background-color: #24282d;
    font-family: 'Montserrat', sans-serif;
}
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 auto;
    grid-template-areas: ". head head head head ."
                         ". nav nav nav nav ."
                         ". main main main main ."
                         ". foot foot foot foot .";
    grid-row-gap: 10px;
}
.site > header {
    grid-area: head;
    margin-top: 15px;
}
.site > nav {
    grid-area: nav;
    text-align: center;
    background: -webkit-linear-gradient(90deg, #242724 0, #515151 44%, #515151 61%, #242724 100%);
    background: -moz-linear-gradient(0deg, #242724 0, #515151 44%, #515151 61%, #242724 100%);
    background: linear-gradient(0deg, #242724 0, #515151 44%, #515151 61%, #242724 100%);
    background-position: 50% 50%;
    -webkit-background-origin: padding-box;
    background-origin: padding-box;
    -webkit-background-clip: border-box;
    background-clip: border-box;
    -webkit-background-size: auto auto;
    background-size: auto auto;
    -webkit-box-shadow: 0 0 7px 0 rgba(199,227,4,0.4) ;
    box-shadow: 0 0 7px 0 rgba(199,227,4,0.4) ;
    text-shadow: 1px 1px 1px rgba(0,0,0,0.2) ;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    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;
    position: sticky;
    top: 0;
    z-index: 1;
}
.site > main {
    grid-area: main;
}
.site > footer {
    grid-area: foot;
    background-color: #242724;
    -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;
}
.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;
}
.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;
}
.nav:first-child {
    margin-right: 10px;
}
.nav:last-child {
    margin-left: 10px;
}
.nav a {
    text-decoration: none;
    color: white;
}
.nav a:visited {
    color: none;
}
.nav a:hover {
    color: #67933e;
}
.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";

}
.videoTitleGrid > span {
    text-align: center;
    
}
.gameGrid {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    grid-template-rows: auto;
    grid-template-areas: "gTitle gLink gPlatform";
    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;
}

.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: -webkit-linear-gradient(90deg, #242724 0, #515151 44%, #515151 61%, #242724 100%);
    background: -moz-linear-gradient(0deg, #242724 0, #515151 44%, #515151 61%, #242724 100%);
    background: linear-gradient(0deg, #242724 0, #515151 44%, #515151 61%, #242724 100%);
    background-position: 50% 50%;
    -webkit-background-origin: padding-box;
    background-origin: padding-box;
    -webkit-background-clip: border-box;
    background-clip: border-box;
    -webkit-background-size: auto auto;
    background-size: auto auto;
    color: white;
    padding: 5px 10px;
}
button:hover {
    color: #67933e;
}
.twittericon {
    width: 24px;
}
.backButton {
    background-color: blue;
    padding: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    margin-bottom: 5px;
}
.gTitle {

}
.gLink {
    text-align: center;
}
.gPlatform {
    text-align: right;
}
.storeButton {
    background-color: darkgreen;
    padding: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    cursor: pointer;
}
.videoGrid {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr auto auto;
    grid-template-rows: auto;
    grid-template-areas: "vThumb vTitle vYTButton vDate";
    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;
}
.videoGrid:hover {
    background-color: #597e35;
}

.vThumb img {
    width:100%;
}
.vTitle {
    text-align: center;
}
.vYTButton {
    text-align: center;
    
}
.vDate {
    text-align: right;
}
.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: #67933e;
    -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%;
}
.threeVidPreviewItem img {
    width: 100%;
    display: block;
    -webkit-radius: 5px 5px 0 0;
    border-radius: 5px 5px 0 0;
}
.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;
}
.titleItem {
    grid-area: titleItem;
}
.titleDiv h1 {
    
    padding: 0 10px 0 10px;
    color: white;
}
.threeVidPreviewItem h3 {
    background-color: black;
    color: white;
    -webkit-border-radius: 0 0 5px 5px;
    border-radius: 0 0 5px 5px;
    text-align: center;
    padding-bottom: 25px;
}
.video-title {
    max-height: 25px;
    display: block;
    overflow: hidden;
    border-radius: 0 0 5px 5px;
    margin-bottom: 5px;
}
.logo {
    width:100%;
    -webkit-border-radius: 5px;
    border-radius: 5px;
}
.steamIcon {
    max-height: 24px;
    max-width: 24px;
    display: inline-block;
}
.calendar {
    width: 100%;
}
.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=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: #587633;
    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;
}
.welcomeGridContainer {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto;
    grid-template-areas: "msg msg msg";
    
}
.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: #587633;

}
.msg h1 {
    text-align: center;
    margin-bottom: 5px;
}
.msg p {
    text-indent: 25px;
    margin-bottom: 15px;
}
.liveStreamLink {
    width: 100%;
    text-align: right;
    margin-bottom: 15px;
}
.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: #587633;
}
.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;
}
.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 {
    background-color: #597e35;
}
.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;
}
.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;
}
.gameimage {
    width: 100%;
    display: block;
    background-color: black;
    -webkit-border-radius: 5px 5px 0 0;
    border-radius: 5px 5px 0 0;
    
}
.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;
    }
}
.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;
}
.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;
    
    
}
.vDate {
    text-align: center;
}
.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;
}
.falloutScreenshots {

}
.falloutScreenshots img {
    width: 100%;
    border-radius: 0 0 5px 5px;
}
.falloutScreenshotTitle {
    text-align: center;
    box-shadow: 0 0 2px 1px rgba(0,0,0,0.5) inset;
    border-radius: 5px 5px 0px 0px;
    color: white;
}
.smallSpacer {
    width: 100%;
    height: 25px;
}
.falloutLegendaryPerksContainer {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: auto;
    grid-template-areas: "legendaryPerkOne legendaryPerkTwo legendaryPerkThree legendaryPerkFour legendaryPerkFive";
}
.legendaryPerkOne {
    grid-area: legendaryPerkOne;
    width: 100%;
}
.legendaryPerkTwo {
    grid-area: legendaryPerkTwo;
    width: 100%;
}
.legendaryPerkThree {
    grid-area: legendaryPerkThree;
    width: 100%;
}
.legendaryPerkFour {
    width: 100%;
    grid-area: legendaryPerkFour;
}
.legendaryPerkFive {
    width: 100%;
    grid-area: legendaryPerkFive;
}
.legendaryPerkCard {
    width: 100%;
}
.legendaryPerkOne p, .legendaryPerkTwo p, .legendaryPerkThree p, .legendaryPerkFour p, .legendaryPerkFive p {
    text-align: center;
    color: white;
}
.falloutCharacterBuildContainer {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    grid-template-rows: auto;
    grid-template-areas: "strength perception endurance charisma intelligence agility luck";
    
}
.falloutCharacterBuildContainer a {
    text-decoration: none;
    color: white;
}
.falloutCharacterBuildContainer ul {
    list-style-type: none;
}
.statStrength, .statPerception, .statEndurance, .statCharisma, .statIntelligence, .statAgility, .statLuck {
    text-align: center;
    color:#587633;
    
    border-radius: 5px;
}
.statStrength a, .statPerception a, .statEndurance a, .statCharisma a, .statIntelligence a, .statAgility a, .statLuck a, .mutations a {
    text-decoration: none;
    color: white;
}
.statStrength a:hover, .statPerception a:hover, .statEndurance a:hover, .statCharisma a:hover, .statIntelligence a:hover, .statAgility a:hover, .statLuck a:hover, .mutations a:hover {
    color: #67933e;
}
.statStrength {
    display: block;
    grid-area: strength;
}
.statPerception {
    display: block;
    grid-area: perception;
}
.statEndurance {
    display: block;
    grid-area: endurance;
}
.statCharisma {
    display: block;
    grid-area: charisma;
}
.statIntelligence {
    display: block;
    grid-area: intelligence;
}
.statAgility {
    display: block;
    grid-area: agility;
}
.statLuck {
    display: block;
    grid-area: luck;
}
.mutations {
    width: 100%;
    border-radius: 0 0 5px 5px;
    box-shadow: 0 0 2px 1px rgba(0,0,0,0.5) inset;
    text-align: center;
    padding: 10px 5px;
}
.mutations ul {
    list-style-type: none;
}
.mutations li {
    display: inline-block;
}
.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;
}
.cellLeft {
    text-align: left;
}
.cellRight {
    text-align: right;
}
.gtaTable {
    width: 100%;
    padding: 0px 10px;
    border-spacing: 0;
    color: white;
}
.gtaTable tr {
    width: 100%;
}

.gtaContainer {
    width: 100%;
    display: grid;
    grid-template-areas: "categories stats";
    grid-template-columns: 25% 75%;
    grid-template-rows: 1fr;
}
.gtaCategories {
    width: 100%;
    display: block;
    grid-area: categories;
    
}
.gtaCategories li {
    list-style-type: none;
}
#Career {
    grid-area: stats;
}
#Skills, #General, #Crimes, #Vehicles, #Cash, #Combat, #Weapons {
    grid-area: stats;
    display: none;
}
.gtaCategories a:hover {
    color:#D1C82F;
}
.gtaCategories a {
    color: white;
    text-decoration: none;
}
.spacerRow {
    height: 15px;
}
.mugshotContainer {
    background-image: url("../images/photo-bg.png");
    background-repeat: no-repeat;
    background-size: contain;
    width: 128px;
    margin: 0 auto;
}
.fallout76Menu, .fallout76SubMenu {
    width: fit-content;
    margin: 0 auto;
    text-align: center;
}

.fallout76Menu li {
    list-style-type: none;
    display: inline-block;
}
.fallout76Menu a, .fallout76SubMenu a {
    color: white;
    text-decoration: none;
}
.fallout76Menu a:hover, .fallout76SubMenu a:hover {
    color: #67933e;
}
.fallout76SubMenu li {
    list-style-type: none;
    display: inline-block;
}
#FOApparel, #FOPerks, #FOMutations, #FOWeapons {
    display: none;
}
#rectangle {
    width: 50px;
    height: 25px;
    background: #2D6EB9;
}
.gtaSkillRectangles {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: 1fr;
    grid-template-areas: "block1 block2 block3 block4 block5";
    width: 100%;
}
.block1, .block2, .block3, .block4, .block5 {
    width: 10px;
    height: 10px;
    background: #2D6EB9;
    display: inline-block;
}
.emptyblock1,.emptyblock2,.emptyblock3,.emptyblock4,.emptyblock5 {
    width: 10px;
    height: 10px;
    background: #253E58;
    display: inline-block;
}
.block1 {
    grid-area: block1;
}
.block2 {
    grid-area: block2;
}
.block3 {
    grid-area: block3;
}
.block4 {
    grid-area: block4;
}
.block5 {
    grid-area: block5;
}
.emptyblock1 {
    grid-area: block1;
}
.emptyblock2 {
    grid-area: block2;
}
.emptyblock3 {
    grid-area: block3;
}
.emptyblock4 {
    grid-area: block4;
}
.emptyblock5 {
    grid-area: block5;
}
@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 auto auto;
        grid-template-areas: "vTitle"
                             "vThumb"
                             "vYTButton"
                             "vDate";
        padding: 10px;
    }
    .vDate {
        text-align: center;
    }
    .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%;
    }
    .falloutCharacterBuildContainer {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto auto auto auto;
        grid-template-areas: "strength perception"
                             "endurance charisma"
                             "intelligence agility"
                             "luck .";
    }
    .gtaContainer {
        width: 100%;
        display: grid;
        grid-template-areas: "categories"
                             "stats";
        grid-template-columns: 1fr;
        grid-template-rows: auto auto;
    }
    .gtaCategories {
        text-align: center;
        margin-bottom: 15px;
    }
    .gtaCategories li {
        list-style-type: none;
        display: inline-block;
    }
}
