@import url('https://fonts.googleapis.com/css?family=Bree+Serif|Zilla+Slab&display=swap');
*{
    margin: 0;
}
.main-body{
    background-color: rgb(0, 50, 150);
    min-height: 100vh;
    height: 100%;
    background-image: url("images/GamedayHQ_justbkgrd.jpg");
    background-size: cover;
    color: #ffffff;
    padding-bottom: 20px;
    min-width: 460px;
}
.gdhq-logo{
    width: fit-content;
    margin: 0 auto;
}
.gdhq-logo img{
    width: 160px;
}
.nav-bar{
    position: relative;
    top: -30px;
    width: 100%;
    height: 120px;
    background-size: 100% 100%;
    background-image: url("images/GamedayHQ_banner2.png");
}
.nav-bar ul{
    display: block;
    color: white;
    padding: 0;
    margin: auto;
    width: fit-content;
    line-height: 120px;
}
.nav-bar li{
    display: inline-block;
    vertical-align: bottom;
    text-align: center;
    margin: 0 10px;
    height: 100px;
    font-size: 26px;
}
.nav-bar a{
    color: white;
    text-decoration: none;
}
.nav-bar a:hover{
    text-decoration: underline;
    color: rgb(201, 157, 15);
}
.home-header{
    text-align: center;
    margin: 20px auto;
    top: -30px;
    position: relative;
    font-family: 'Zilla Slab', serif;
}
.home-header h1, .home-header h2{
    margin: 8px 0;
    font-weight: 100;
    text-shadow: 3px 4px #000000;
}
.home-header .italic-header{
    font-style: italic;
}
.home-header .giant-header{
    font-style: normal;
    text-transform: uppercase;
    font-family: 'Bree Serif', serif;
    font-size: 2em;
}
.home-header .sub-header{
    text-transform: uppercase;
    font-family: 'Bree Serif', serif;
}
.mag-covers{
    display: grid;
    grid-template-columns: auto auto auto auto;
    gap: 4px;
    justify-content: space-evenly;
    width: 88%;
    max-width: 1200px;
    margin: auto;
}
.mag-covers .mag-cover{
    padding: 2px 4px 8px;
}
.mag-cover img{
    width: 100%;
    height: 100%;
    transition: all .2s ease-in-out;
    /* transition: width .2s ease-out, height .2s ease-out, margin-bottom .2s ease-out, margin-top .2s ease-out; */
}
.mag-cover img:hover{
    width: 105%;
    height: 105%;
    position: relative;
    margin-bottom: -2.5%;
    margin-top: -5%;
    margin-left: -2.5%;
    transition: all .2s ease-in-out;
}

.inner-header{
    font-size: 2em;
    font-family: 'Bree Serif', serif;
    text-transform: uppercase;
}
h2.page-content{
    text-shadow: none;
    /* text-shadow: -2px -3px 3px #000000, 1px -2px 4px #6f97e0; */
    margin: 2em auto;
    max-width: 88%;
}
.about-grid{
    display: block;
    width: 80%;
    margin: auto;
}

/* .about-grid{
    display: grid;
    grid-template-columns: auto 15%;
    grid-gap: 1em;
    gap: 1em;
    width: 80%;
    margin: 2em auto;
} */
#twitter-widget-0{
    box-shadow: 12px 20px 12px 8px rgba(0, 0, 0, 0.5);
    box-shadow: 7px 7px 12px 7px rgba(0, 0, 0, 0.5);
}
#twitter-widget-0 .SandboxRoot.env-bp-820 .timeline-Tweet-text, .timeline-Tweet-text{
    font-size: 20px !important;
    line-height: 24px !important;
}
/* #twitter-widget-0{
    position: fixed !important;
    left: 1em;
    top: 1em;
    box-shadow: 12px 20px 12px 8px rgba(0, 0, 0, 0.5);
} */

@media screen and (max-width: 510px){
    .home-header .giant-header{
        font-size: 1.4em;
    }
    .inner-header{
        font-size: 1.4em;
    }
}

/*IE ONLY STYLES*/
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {  
    /* Put your IE-only styles here. Works for IS 10 & IE 11*/
    .nav-bar{
        text-align: center;
    }
    .gdhq-logo{
        width: auto;
        text-align: center;
    }
    .mag-covers{
        display: block;
        margin: auto;
    }
    .mag-cover{
        width: 24%;
        display: inline-block;
    }
 }