#newsFeed{
    margin-top: 5px;
    position: static;
    background: url("../img/head.png") no-repeat right;
    display: block;
    text-align: left;
}

#newsFeed img{
    width: 0;
}

#newsFeed div{
    font-family: BlackOps, "Roboto Thin", "Arial Black", monospace ;
    color: white;
    position: static;
    font-size: 25px;
    margin-left: 10px;
    margin-bottom: 15px;
}

.sectionTitle{
    color: white;
    display: block;
    margin-left: 15px;
    margin-right: 15px;
    font: bold 25px Arial, Sans-serif;
}

.sectionDivider{
    width: auto;
    border: none;
    border-bottom: 1px solid #4b4a4a;
    margin-left: 15px;
    margin-right: 15px;
}

.sectionHolder{
    height: 410px;
    display: block;
    text-align: center;
    margin-bottom: 30px;
}

.section{
    display: block;
    overflow: auto;
    white-space: nowrap;
    text-align: left;
    margin: 5px 20px;
}

.gameItem{
    display: inline-block;
    border: 1px solid grey;
    margin-left: 5px;
    margin-right: 5px;
    height: 390px;
    width: 250px;
    vertical-align: top;
}

.gameImage{
    width: 100%;
    height: 200px;
    background-size: cover;
    background: url("../img/head.png") no-repeat center;
    margin: 0;
    padding: 0;
    border: none;
    display: block;
    position: relative;
}

.gameGenre{
    color: white;
    background-color: #0a1a6c;
    border-bottom-right-radius: 10px;
    width: fit-content;
    padding: 7px;
    font: bold 12px Arial, Sans-serif;
    cursor: default;
    position: absolute;
    top: 0;
    left: 0;
}

.gameInfo{
    position: absolute;
    bottom: 0;
    right: 0;
    cursor: pointer;
    width: fit-content;
    padding: 5px;
    font: bold 12px Arial, Sans-serif;
    color: white;
    background-color: #242424;
    border-top-left-radius: 10px;
    transition: 0.3s;
    text-decoration: none;
}

.gameName, .gameDescription, .gameDownload{
    color: white;
    padding: 0;
    margin: 7px 7px 0;
    cursor: default;
}

.gameName{
    font-size: 25px;
    font-family: "Lucida Console", monospace;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.gameDownload{
    text-align: center;
    color: #4b4a4a;
    font-size: 14px;
    font-weight: bold;
    font-family: "Lucida Console", monospace;
}

.gameDescription{
    height: 80px;
    font-size: 18px;
    word-break: break-all;
    white-space: pre-line;
    font-family: "Roboto Light", monospace;
    color: #9c9595;
}

.gameDownloadSection{
    width: 90%;
    border-top: 1px solid grey;
    display: block;
    margin: auto;
    text-align: center;
}

.gameDownloadSection a{
    display: inline-block;
    height: 30px;
    margin: 5px;
}

.gameDownloadSection a img{
    height: 100%;
}

.viewMore, #aboutMoreInfo{
    height: 30px;
    border: 1px solid white;
    background: none;
    color: white;
    cursor: pointer;
    font-weight: bold;
    transition: 0.3s;
}



@media screen and (min-width: 1280px) and (min-height: 490px){
    .gameDownloadSection a img:hover{
        animation: shake 0.6s;
        animation-iteration-count: infinite;
    }

    .gameInfo:hover{
        background-color: #0a1a6c;
    }

    .viewMore:hover{
        transform: scale(1.1);
    }

    .sectionTitle{
        font-size: 30px;
    }

    #newsFeed{
        position: relative;
        background: none;
    }

    #newsFeed img{
        width: 100%;
        height: auto;
    }

    #newsFeed div{
        position: absolute;
        font-size: 50px;
        top: 50%;
        left: 2%;
        transform: translate(0, -50%);
        margin: 0;
    }
}

@media screen and (max-width: 450px){
    #newsFeed div{
        background: -webkit-linear-gradient(left, #ffffff, #000000);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }
}

@media screen and (min-width: 450px){
    #newsFeed div{
        color: white;
    }
}


