body{
    margin: 0;
    padding: 0;
    font-family: Arial,Microsoft JhengHei,Microsoft YaHei,sans-serif;
    -webkit-overflow-scrolling: touch;
    -webkit-text-size-adjust: 100%; 
    background-color: #0b041a;
    background-image: url(../images/bg_games.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
}
.container{
	overflow: hidden;
    height: 100vh;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}
.row{
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}   
.left{
    display: flex;
    align-items: center;
    justify-content: center;
}
.logo{
    background-image: url(../images/logo.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 200px;
    height: 100px;  
}
.right{
    margin-left: 4vw;
}
.img{
    background-image: url(../images/img_games.png);
    width: 800px;
    height: 500px;  
    background-repeat: no-repeat;
    background-size: contain;
    margin: 0 auto;
    
}
.gamesBtn{
    width: 100%;
    height: 100px;
    display: flex;
    justify-content: center;
}
.btn_green{
    background-image: url(../images/btn_green.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 200px;
    height: 100%;
    margin: 10px;
    cursor: pointer;
}
.btn_red{
    background-image: url(../images/btn_red.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 200px;
    height: 100%;
    margin: 10px;
    cursor: pointer;
}
.right_text{
    color: white;
    text-align: center;
    margin: 40px;
    font-size: 1.2rem;
}
@media screen and (max-width: 1024px){
    body{
        background-position:72% 0%;
    }
   .left{
       align-self: start; 
       margin: 0 auto;
       padding-bottom: 5vh;
   }
   .right{
       display: block;
       margin-left: 0vh;
   }
   .row{
    height: 600px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    }   
    .right>.img{
        width: 90vw;
        height: 45vh;
        padding-bottom: 0vh;
    }
    .btn_green,.btn_red{   
        width: 200px;
    }
    .right_text{
        color: white;
        text-align: center;
        margin: 50px;
        font-size: 2rem;
    }
}

@media screen and (max-width: 414px){
    body{
        background-position:68% 0%;
    }
    .right>.img{
        width: 100vw;
        height: 300px;
        padding-bottom: 0vh;
    }
    .btn_green,.btn_red{   
        width: 150px;
    }
    .right_text{
        color: white;
        text-align: center;
        margin: 20px;
        font-size: 1.2rem;
    }
    .left{
        align-self: start; 
        margin: 0 auto;
        padding-bottom: 3vh;
    }
    .logo{
        width: 150px;
        
    }
}
@media screen and (max-width: 320px){
    body{
        background-position:68% 0%;
    }
    .right>.img{
        width: 100vw;
        height: 200px;
        padding-bottom: 0vh;
    }
    .btn_green,.btn_red{   
        width: 130px;
    }
    .right_text{
        color: white;
        text-align: center;
        margin: 20px;
        font-size: 1.2rem;
    }
    .left{
        align-self: start; 
        margin: 0 auto;
        padding-bottom: 3vh;
    }
    .logo{
        width: 100px;
        
    }
    .gamesBtn{
        padding-top: 20px;
    }
}


