@import url('https://fonts.googleapis.com/css2?family=PT+Sans&display=swap');
html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    border: none;
    background: #18284f;
    font-family: 'PT Sans', sans-serif;
    color: #fff;
}
header {
    height: 100vh;
    position: relative;
}
header .content {
    position: absolute;
    text-align: center;
    left: 50%;
    top: calc( 50% - 50px );
    transform: translate(-50%, -50%);
}
header .logo img {
    width: 350px;
}
header .desc {
    max-width: 700px;
    margin-bottom: 25px;
    font-size: 15px;
    letter-spacing: 2px;
}
header .contact {
    font-size: 22px;
    letter-spacing: 2px;
}

header .contact-link {
    display: inline-block;
    text-decoration: none;
}

header .contact-link:not(:last-child) {
    margin-right: 20px;
}

header .contact-icon {
    width: 40px;
    height: 40px;
    fill: #fff;
}

header .contact-icon:hover {
    fill: #c80064;
    transform: rotate(-15deg);
    transition: .4s;
}

header .games-link {
    height: 50px;
    line-height: 50px;
    font-size: 20px;
    position: absolute;
    bottom: 0;
    color: #c80064;
    left: 50%;
    transform: translateX(-50%);
    animation-name: bounce;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-timing-function: ease;
}

header .games-link:hover {
    text-decoration: none;
}

@keyframes bounce {
    0%   { bottom: 0; }
    10%  { bottom: 0; }
    30%  { bottom: 20px; }
    50%  { bottom: 0; }
    100% { bottom: 0; }
}


/*********************************/
section{
    min-height: 650px;
    position: relative;
}
section .container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.game-logo-area {
    margin-top: 20px;
    margin-bottom: 30px;
}

.game-ss {
    max-width: 100%;
}
.game-logo {
    width: 100%;
    border-radius: 10px;
}
.game-title {
    font-size: 34px;
    font-weight: 600;
    display: block;
    text-align: center;
}
.store-link {
    display: block;
    width: 100%;
}
.store-link:last-child {
    margin-top: 40px;
}
.store-img {
    border-radius: 5px;
    border: 1px solid #fff;
    width: 100%;
}


.game-1 {
    background: #18284f;
}
.game-2 {
    background: #18284f;
}


footer {
    height: 50px;
    text-align: center;
    font-size: 13px;
    line-height: 50px;
    color: #fff;
}

.privacy-policy, .support {
    padding: 100px 0;
}
.privacy-policy h1 {
    font-size: 60px;
}

.admob-link {
    color: #78dbe4;
    font-size: 20px;
    line-height: 80px;
}
.admob-link:hover {
    text-decoration: none;
    color: aqua;
}

.support {
    height: calc(100vh - 50px);
    padding-bottom: 0;
}
.support footer{
    position: absolute;
    bottom: 0;
}
.support a {
    color: #fff;
}
.support a:hover {
    text-decoration: none;
    color: #78dbe4;
}

@media only screen and (min-width: 768px) {
    header .title h1{
        font-size: 80px;
        margin-top: 40px;
    }
    header .desc {
        margin-bottom: 90px;
        font-size: 30px;
    }
    header .contact {
        font-size: 30px;
        letter-spacing: 2px;
    }
    section{
        min-height: 75vh;
    }

    .game-logo-area {
        margin-top: 50px;
        margin-bottom: 0;
    }

    .game-title {
        text-align: left;
        font-size: 60px;
    }
}