@font-face {
    font-family: Jura;
    src: url(../fonts/Jura-Medium.ttf)
}

@font-face {
    font-family: Wave;
    src: url(../fonts/310-CAI978.ttf)
}

*, *:before, *:after {
    box-sizing: border-box;
}


html {
    max-width: 950px;
    width: 100%;
    margin: 0 auto;
    background: #2b2b4b;
}

body {
    margin: 0 auto;
    padding: 0;
    background: #ffffff;
    height: 100%;
    width: 100%;
    font-family: Jura, ui-serif;
    overflow-y: auto;
}

.wrapper {
    padding: 0px 0px 25px;
    margin: 0 auto 0px;
}

.top-container {
    width: 100%;
    height: auto;
    min-height: 140px;
    margin-bottom: 10px;
}

.top-container img {
    width: 100%;
}


.bottom-container .screenshot-scroller {
    margin: 16px auto 16px;
    padding: 16px;
    overflow-x: scroll;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: nowrap;
    gap: 16px;
}

.screenshot-scroller .screenshot-item {
    width: 45%;
    min-width: 250px;
}

.screenshot-scroller .screenshot-item img {
    width: 100%;
    height: auto;
}

.mid-container {
    margin: 0 auto;
    width: calc(100% - 32px);
}

.game-list {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    flex-wrap: nowrap;
    gap: 12px;
    padding: 10px 20px;
    border-top: 1px solid #7a7a7a;
    border-bottom: 1px solid #7a7a7a;
    align-items: center;
    justify-content: space-evenly;
}

.game-list .game-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    min-height: 110px;
    gap: 10px;
    padding: 5px 12px;
    position: relative;
}


.game-list .game-item span {
    color: #7a7a7a;
    text-align: center;
    font-size: 18px;
    letter-spacing: 0px;
}

.game-list .game-item img {
    width: 75%;
    height: 75%;
    object-fit: contain;
    object-position: center;
    max-width: 80px;
    max-height: 80px;
    min-width: 55px;
    min-height: 55px;
}

.game-list .game-item:not(:last-child):after {
    content: "";
    background: #7a7a7a;
    width: 1px;
    height: 50px;
    position: absolute;
    right: -8px;
    bottom: 0px;
    top: 50%;
    margin-top: -30px;
}

.item-container {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 15px;
    width: calc(100% - 32px);
    margin: 15px auto 25px;
}

.item-container .info-left {
    width: 180px;
    height: 180px;
    background-color: #ffffff;
    border-radius: 30px;
    border: solid 1px #7a7a7a;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.item-container .info-left img {
    width: 100%;
    height: 100%;
    max-width: 110px;
    max-height: 110px;
}

.item-container .info-right {
    width: calc(100% - 180px);
    padding: 0px 5px 5px 0px;
}

.info-right h2 {
    font-size: 25px;
    letter-spacing: 0px;
    color: #414142;
    margin-top: 6px;
    margin-bottom: 8px;
}

.info-right .p-info {
    font-size: 14px;
    line-height: 18px;
}

.info-right .download-btn {
    background: #2eb3ff;
    color: #fff;
    text-align: center;
    padding: 5px 12px;
    width: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 36px;
    border-radius: 15px;
    border: 0px;
    line-height: 18px;
    font-size: 20px;
    cursor: pointer;
    text-decoration: none;
}


.info-right .download-btn:hover, .info-right .download-btn:active {
    opacity: 0.8;
    box-shadow: 1px 1px 1px #1f1f1f;
    margin-top: 1px;
    margin-left: 1px;
    text-decoration: none;
    color: #fff;
}

.info-right .download-btn:focus, .info-right .download-btn:visited {
    text-decoration: none;
    color: #fff;
}


