.header {
    position: fixed;
    z-index: 100;
    top: 0;
    width: 100%;
    min-height: 70px;
    background: rgb(181, 0, 46);
    background: linear-gradient(47deg, rgba(181, 0, 46, 1) 0%, rgba(98, 22, 36, 1) 100%);
}

.header {
    max-width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.headerLeft {
    max-width: 100%;
    height: auto;
    display: block;
}
.headerLeft img {
    padding: 17px;
}
.headerCenter {
    flex: 1;
    text-align: center;
}
body {
    color: white;
}

@media (max-width: 600px) {
    .headerCenter img {
        display: none;
    }
}
.headerLogo {
    padding-top: -10px;
}


body {
    max-width: 100%;
}

button {
    -ms-user-select: none;
    -webkit-user-select: none;
    user-select: none;
}

a {
    text-decoration: none;
    color: white;
}


.bgdarkest {
    background-color: #222526;
}

.gameCard {
    padding: 40px 25px 40px 25px;
    display: flex;
    background: #151515;
}
.gameCard img {
    max-height: 25em;
    border-radius: 15px;
    object-fit: cover;
}
.gameCardImage {
    width: 100%;
    min-height: 25em;
}
.game-section {
    padding-top: 130px;
}
.gameCardRight {
    max-width: 50em;
    padding-left: 33px;
}
.icon-relative {
    max-width: 100%;
    position: relative;
}
.icon-absolute {
    top: 0.6em;
    left: 0.6em;
    position: absolute;
    display: block;
    -webkit-filter: drop-shadow(5px 5px 5px rgba(0, 0, 0, 0.3));
    filter: drop-shadow(5px 5px 5px rgba(0, 0, 0, 0.3));

    transition: 120ms;
}
.icon-absolute:hover {
    transform: scale(107%);
}
.titleText {
    background-color: transparent;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
    font-size: 2em;
    font-weight: 700;
}
.gameCardAuthor {
    font-size: 1.2em;
    font-weight: 450;
    margin-bottom: 1.4em;
}
.smallTitle {
    font-size: 1.2em;
    margin-bottom: 0.3em;
    font-weight: 600;
}
.smallText {
    font-size: 1.1em;
    margin-bottom: 1em;
}
.downloadBtn {
    background-color: white;
    color: black;
    font-weight: 700;
    border-radius: 8px;
    padding: 10px 15px 10px 15px;
    font-size: 1.2em;
    box-shadow: 0px 0px 10px 7px rgba(255, 255, 255, 0.2);
    transition: 200ms;
}
.downloadBtn:hover {
    box-shadow: 0px 0px 10px 7px rgba(255, 255, 255, 0.5);
}
.downloadSection {
    margin: 1.7em 0 0 0;
}

.gallery {
    justify-content: left;
    margin-top: 0.7em;
    padding: 35px 0 0 35px;
    display: flex;
    flex-wrap: wrap;
    max-width: 100%;
}
@media (max-width: 600px) {
    .gallery {
        justify-content: center;
    }
}
body {
    max-width: 100%;
}
.gallery img {
    padding: 10px;
    border-radius: 20px;
    max-height: 17em;
    min-height: 17em;
    height: 100%;
    transition: 50ms;
}
.gallery img:hover {
    transform: scale(105%);
}