body {
    background: lightgray;
    margin: 0 auto;
}
a {
    color: #1437bd;
}
a:hover {
    color: #142f92;
}a:active {
     color: #643e92;
 }
.container {
    margin: 20px auto 0 auto;
    width: 1300px;
}

/* hover effect */
.hover {
    -webkit-filter: brightness(100%);
    filter: brightness(100%);
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    transition: all 500ms ease;
}
.hover:hover {
    -webkit-filter: brightness(150%);
    filter: brightness(150%);
}
.hover:active {
    -webkit-filter: brightness(70%);
    filter: brightness(70%);
}
/* hover effect */

.left{
    float: left;
}
.right {
    float: right;
}
.clearfix {
    clear: both;
}

/* navbar */
.nav {
    background: linear-gradient(#369b04, #256004);
}
.nav > .nav-items {
    list-style: none;
    margin: 0;
    padding: 0 0 0 10px;
}
.nav > .nav-items li {
    display: inline;
}
.nav > .nav-items li a {
    padding-top: 10px;
    display: inline-block;
    width: 100px;
    height: 30px;
    background: linear-gradient(#369b04, #256004);
    text-align: center;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}
.nav > .nav-items li a:hover {
    background: linear-gradient(#255804, #296005);
}
.nav > .nav-items li.active a {
    background: linear-gradient(#255804, #296005);
    color: #d9ce19;
}
.logo {
    display: inline-block;
    cursor: pointer;
}
.logo span {
    color:red;
}
.logo:hover {
    color: gray;
}
.logo:hover span {
    color: lightcoral;
}
.cart-display {
    float: right;
    top: 30px;
    position: relative;
}
/* navbar */

/* main */
.main-container {
    width: 1260px;
    height: 250px;
    background: gray;
    color: white;
    padding-top: 40px;
    padding-left: 40px;
    background: url("/images/Dishonored-Logo.jpg") no-repeat;
    background-position: 60%;
}
.main-content {
    width: 400px;
    border-bottom: limegreen solid;
}
footer {
    background: gray;
    width: 100%;
    height: 35px;
    color: white;
    text-align: center;
    padding-top: 20px;
}
/* main */

/* main selection */
.platform-container {
    width: 100%;
    height: 250px;
}
.platform {
    width: 370px;
    height: 170px;
    margin-top: 30px;
    color: white;
    display: block;
    cursor: pointer;
}
.platform h1 {
    text-align: center;
    padding-top: 45px;
}
.platform h1 a {
    text-decoration: none;
    color: white;
}
.platform1 {
    background: darkblue;
    float: left;
}
.platform2 {
    align-self: center;
    display: inline-block;
    background: darkgreen;
    margin-left: 95px;
}
.platform3 {
    background: black;
    float: right;
}
/* main selection */

/* games page */
.platformBar {
    margin: 20px 0;
    height: 50px;
    font-size: 40px;
    color: white;
    padding: 5px;
}
.game-card {
    display: inline-table;
    margin-bottom: 20px;
    margin-right: 50px;
    background: whitesmoke;
    height: 350px;
    width: 250px;
}
.game-card .game-image {
    width: 100%;
    height: 50%;
}
.game-card .game-name {
    position: relative;
    top: -50px;
    left: 5px;
}
.game-card .game-price {
    width: 90px;
    height: 40px;
    color: white;
    background: limegreen;
    position: relative;
    left: 160px;
    top: -25px;
    font-size: xx-large;
}
.game-card .game-buy-button {
    background: limegreen;
    padding-top: 5px;
    color: white;
    font-size: 40px;
    height: 50px;
    position: relative;
    top: 21px;
    cursor: pointer;
    text-align: center;
}
.game-card .game-buy-button:hover {
    background: #33e233;
}
.game-card .game-buy-button:active {
    background: #249724;
}
#oderBulk {
    cursor: pointer;
    background: limegreen;
    text-align: center;
    height: 0;
    padding: 0;
    transition: height 1s ease;
    overflow: hidden;
}
/* games page */

/* cart */
.cart {
    width: 100%;
    text-align: center;
}
.cart thead {
    color: white;
    background: darkgray;
}
.cart img{
    width:100%;
    max-width:80px;
}
/* cart */

/* contact */
form {
    margin: 0 auto;
}
.form-group {
    margin-bottom: 1rem;
}
input[type=text], input[type=email], textarea {
    width: 100%;
    padding: 12px 20px;
    margin: 8px 0;
    display: inline-block;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}
input[type=submit] {
    width: 100%;
    background-color: #4CAF50;
    color: white;
    padding: 14px 20px;
    margin: 8px 0;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}
input[type=submit]:hover {
    background-color: #45a049;
}
.form {
    width: 80%;
    border-radius: 5px;
    background-color: #f2f2f2;
    padding: 20px;
    margin: 10px auto;
}
/* contact */