*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
    text-decoration: none;
}
nav ul{
    text-align: center;
    margin: auto;
    display: inline;
}
nav ul li a{
    display: inline-block;
    margin-right: 20px;
    font-size: 20px;
    letter-spacing: 0.5px;
    color: rgb(29, 16, 104) !important;
}
nav ul li a:hover{
    color: indigo !important;
}
.main-btn{
    background-color: rgb(255, 136, 0);
    color: #fff;
    padding: 10px 18px;
    border-radius: 8px;
    width: 120px;
    text-align: center;
}
.main-btn:hover{
    text-decoration: none;
    transition: 0.5s;
    color: #fff;
    background-color: orangered;
}
nav{
    padding-top: 15px !important;
    padding-top: 12px;
    animation: top-to-bottom 500ms ease-out;
    animation-duration: 2s;
    
}
#logo{
    font-size: 23px !important;
    font-weight: bold;
    color: crimson;
    display: inline-block;
    border: 1px solid #be1145;
    padding: 10px 15px;
    border-radius: 6px;
}
.welcome-container{
    background: rgb(238,174,202);
    background: radial-gradient(circle, rgba(238,174,202,1) 0%, rgba(148,187,233,1) 100%);
    min-height: 100vh;    
}


@keyframes left-to-right {
    0%{
        transform: translateX(-100%);
    }
    100%{
        transform: translateX(0);
    }
}
@keyframes top-to-bottom {
    0%{
        transform: translateY(-100%);
    }
    100%{
        transform: translateY(0);
    }
}
@keyframes right-to-left {
    0%{
        transform: translateX(100%);
    }
    100%{
        transform: translateX(0);
    }
}



.banner{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 100%;
    margin-top: 50px;
}
.btu{
    width: 150px;
    font-weight: 500;
    font-size: 18px;
    letter-spacing: 1px;
    background-color: rgb(255, 136, 0);
    color: #fff;
    padding: 10px 18px;
    border-radius: 8px;
    width: 120px;
    text-align: center;
    transition: all 1s;
    text-decoration: none;

}
.btu:hover{
    text-decoration: none;
    background-color: orangered;
    color: #050102;
}





/* Gamming Page Section */






.game-banner{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
}



.game-img{
    width: 100%;
    height: 250px;
    position: relative;
    transition: transform 1s;
}




.game-banner h1{
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    margin-top: 5px;
    font-weight: bold;
    color: rgb(10, 10, 71);
    margin-bottom: 10px;
    margin-top: 25px;
}


.game-banner p{
    text-align: center;
    color: #320c44;
    font-size: 18px;
}




.game-banner a{
    text-decoration: none;
    background-color: #be1145;
    padding: 10px 15px;
    display: inline-block;
    border-radius: 7px;
    color: #fff;
    letter-spacing: 0.5px;
    transition: all 1s;

}
.game-banner a:hover{
    background-color: #ff004c;

}



.g-1{
    animation: left-to-right 500ms ease-out;
    animation-duration: 2s;
    background-color: rgb(207, 211, 133);
    width: 340px;
    height: 430px;
    margin-bottom: 25px;
    border-radius: 8px;
    margin-right: 70px;
}
.g-2{
    width: 340px;
    height: 430px;
    margin-bottom: 25px;
    border-radius: 8px;
    background-color: rgb(198, 218, 208);
    margin-right: 70px;
}

.g-3{
    animation: right-to-left 500ms ease-out;
    animation-duration: 2s;
    width: 340px;
    height: 430px;
    margin-bottom: 25px;
    border-radius: 8px;
    background-color: rgba(112, 155, 219, 0.26);
}


.banner-img{
    width: 550px;
    margin-bottom: 50px;
    border-radius: 10px;
}
.banner h1{
    margin-bottom: 30px !important;
    color: #6d0d2a;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;

}









@media screen and (max-width: 992px) {
    .sign-in{
        display: none;
    }
    nav ul li{
        
        text-align: right;
    }
    .welcome-container{
        padding: 20px;
    }
    .welcome-container img{
        width: 500px;
    }
    .welcome-container h1{
        text-align: center;
    }
    .game-banner{
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 0px 25px;
        margin-top: 50px;
    }
    .game-banner img{
        width: 100%;
    }
    .main-btn{
        display: none;
    }
    #logo{
        font-size: 2px;
    }

    .g-1{
        margin-right: 0px;
    }
    .g-2{
        
        margin-right: 0px;
    }
    
    
    
  }



