body, html {
    max-width: 100vw;
    height: 100%;
}
body {
    margin: 0;
    overflow: hidden;
}
body a {
    text-decoration: none;
}

main {
    font-size: 1.5em;
}
@media only screen and (min-width:768px) {
    main {
        font-size: 2em;
    }
}

main {
    /* height: calc(100% - 100px); */
    height: 100%;
    color: #fff;
    background-image: url(/img/bg_1.png);
    background-size: cover;
    overflow: hidden;
}

.center {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

#select-language {
    float: right;
    margin-top: 10px;
}
#select-language select {
    color: #fff;
    padding: 11px 25px 11px 30px;
    border: none;
    background-image: url(/img/icon_1.png),url(/img/caret.svg);
    background-size: 25px, 12px;
    background-repeat: no-repeat, no-repeat;
    background-position: left, right 11px center;
    background-color: rgba(0, 0, 0, .2);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.header-logo {
    clear: right;
}

.header-logo img {
    width: 230px;
}
a.add-friend-btn img {
    width: 300px;
}
.footer-logo {
    width: 64px;
    padding-top: 8px;
}
.footer-container div img {
    width: 50px;
}
@media only screen and (min-width:768px) {
    .header-logo img {
        width: 400px;
    }
    a.add-friend-btn img {
        width: auto;
    }
}

.text {
    margin: 10px auto;
}

.container {
    /* display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 100px; */
    position: relative;
    z-index: 2;
}
.item img {
    width: 250px;
}
@media only screen and (min-width:768px) {
    .container {
        /* grid-template-columns: repeat(6, 1fr); */
    }
    .app-store-btn {
        /* grid-column-start: 3; */
    }
    .play-store-btn {
        /* grid-column-start: 4; */
    }
    .item img {
        width: auto;
    }
}

.character-img {
    margin: -100px auto 0 auto;
    max-width: 1000px;
}
.character-img img {
    left: 50%;
    position: relative;
    transform: translateX(-50%);
}
@media only screen and (min-height:900px) {
    .character-img {
        margin-top: -90px;
    }
}
@media only screen and (min-width:1000px), (min-height:1000px) {
    .character-img {
        margin-top: -150px;
    }
    .character-img img {
        width: 1000px;
    }
}
@media only screen and (min-height:1300px) {
    .character-img {
        margin-top: 0;
    }
}

footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 100px;
    font-size: 0.75em;
    background-color: #202122;
    color: #C6CBD2;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    text-align: center;
    padding-top: 10px;
}
.footer-container > * {
    justify-self: center;
}
.privacy {
    grid-column-start: 4;
}
.terms {
    grid-column-start: 5;
}
.contact {
    grid-column-start: 6;
}
@media only screen and (min-width:768px) {
    .footer-container {
        grid-template-columns: repeat(12, 1fr);
    }
    .privacy {
        grid-column-start: 10;
    }
    .terms {
        grid-column-start: 11;
    }
    .contact {
        grid-column-start: 12;
    }
}