body{
    margin: 0;
    padding: 0;
}
/* Font style */
p{
    /* color: #193371;
    font-size: 22px; */
}
h3{
    margin: 0;
}
/* landing style */
.landing{
    width: 100%;
    height: 950px;
    position: relative;
}
.landing-image{
    width: 90%;
    height: 50%;
    position: absolute;
    top: 0;
    left: 0;
}
.landing-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.landing-container{
    background-color: rgb(229, 240, 239);
    width: 42%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 2;
    position: relative;
    top: 31%;
    left: 36%;
    padding: 4% 3%;
}
.landing-container h2{
    color: rgb(11 32 91);
    margin-bottom: 60px;
    font-size: 25px;
}
.landing-container button{
    position: absolute;
    bottom: -60px;
    right: 0;
    color: #ffffff;
    background: transparent;
    height: 60px;
    width: 40%;
    background-color: rgb(188, 5, 5);
    border: none;
}
.landing-box{
    display: flex;
    flex-direction: row;
}
.landing-text{
    padding: 0px 7%;
    font-size: 22px;
}
.empty-box{
    width: 100%;
    border-top: 4px solid rgb(11 32 91);
}

.header{
    position:absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-around;
    background-color: white;
    padding: 10px 0;
    z-index: 333;
}
.text-logo a{
    text-decoration: none;
    color: rgb(11, 7, 101);;
}
.pages-tabs{
    display: flex;
    gap: 20px;
    align-items: center;
}
.tab{
    cursor:pointer;
    color: rgb(11, 7, 101);
    text-decoration: none;
}
.tab:hover{
    color: aqua;
}
/* overview style */

.about-game{
    color: white;
    position: relative;
    border-bottom: 17px solid #1c2863;
}

.main-overview{
    display: flex;
    flex-direction: column;
    padding: 4% 10%;
    padding-bottom: 13%;
    background-color: #1c2863;
}
.main-overview h2{
    font-size: 34px;
    width: 60%;
}
.main-overview p{
    color: white;
    font-size: 22px;
}
.game-intros{
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 4%;
    position: relative;
}
.intro-detail div{
    width: 99%;
    height: 99%;
    position: absolute;
    border: 4px solid #d4d1d1cc;
    top: 8px;
    left: 8px;
    z-index: -1;
}
.intro-detail{
    width: 20%;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: black;
    position: relative;
    top: -187px;
    padding: 3%;
    background-color: #e3e3e3;
}
.intro-detail h3{
    text-align: left;
    width: 100%;
    font-size: 27px;
}
.intro-detail p{
    text-align: justify;
    color: black;
    font-size: 21px;
}
/* Game-gatewary style */
.game-area{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px 0;
    gap: 40px;
    position: relative;
    border-bottom: 17px solid #1c2863;
}
.game-image-container{
    width: 60%;
}
.game-image-container img{
    width: 100%;
    object-fit: cover;
}
.start{
    width: 20%;
    height: 50px;
    background: none;
   background-color:  #ffffff;
   border: 1px solid #1c2863;
    color: #1c2863;
}
.start:hover{
    background-color:  #1c2863;
    color: white;
}
/* company section style */

.about-company{
    position:relative;
    background-color: white;
    padding: 7% 0;
}
.co-introductions{
    display: flex;
    flex-direction: row;
    align-items: stretch;
    padding: 0 5%;
    position: relative;
    justify-content: space-around;
    padding: 0%;
}
.intro-block h2{
    color: #ffffff;
    z-index: 1;
}
.intro-block{
    width: 22%;
    background-color: #1c2863;
    padding: 0 2%;
    position: relative;
}
.intro-block p{
    color: white;
}
.intro-block div{
    width: 99%;
    height: 99%;
    position: absolute;
    border: 4px solid #1c2863;
    top: 8px;
    left: 8px;
    z-index: 0;
}
/* disclaimer & license style */
.disclaimer-license{
    text-align: center;
    padding: 4% 0;
    background-color: #1c2863;
    position: relative;
}
.disclaimer-container{
    width: 55%;
    padding: 1% 4%;
    background-color: #f0ffff38;
}
.disclaimer-license h2{
    color: #ffffff;
    text-align: left;
    font-size: 34px;
}
.disclaimer-container p{
    color: white;

    font-size: 25px;
}

/* badge style */
.badges{
    padding: 30px 0;
    display: flex;
    justify-content: space-around;
    align-items: center;
    background-color: #193371;
    position: relative;
}
.badge{
    padding: 0 10px;
    z-index: 1;
}
.badge img{
    width: 100%;
    object-fit: cover;
}
/* contact us style */
.contact-us{
    display: flex;
    flex-direction: row;
    justify-content: center;
    color: azure;
    padding: 5% 10%;
    position: relative;
}

.contact-us form{
    display: flex;
        flex-direction: column;
        width: 70%;
        gap: 15px;
        text-align: left;
}
form h2{
    font-size: 30px;
    text-align: center;
}
form input{
    height: 40px;
    width: 100%;
    border: none;
    border-bottom: 1px solid white;
}
form label{
    font-size: 23px;
}
textarea{
    height: 107px;
    width: 100%;
    border: none;
    border-bottom: 1px solid white;
}
form * {
    background:none;
    color: white;
}
form button{
    padding: 15px;
    font-size: 18px;
    width: 50%;
    margin: 0 auto;
    border: none;
}
form button:hover{
    box-shadow: 0px 1px 7px 1px #e4e4e4;
}

/* footer style */
.footer{
    display: flex;
    flex-direction: column;
    /* padding: 40px 0; */
    background-color:#193371;
    text-align: center;
}

.footer-links{
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    padding: 3% 30px;
    width: 40%;
    margin: 0 auto;
    gap:20px;
    color: #ffffff;
    z-index: 2;
}
.footer-links a{
    padding-left: 10px;
    cursor: pointer;
    text-decoration: none;
    color: #ffffff;
}
.footer-links a:hover{
    color: #51c3fc;
}
.footer-disclaimer{
    text-align: center;
    padding: 0 5%;
}
.footer-disclaimer p{
    color: white;
}
.underline{
    margin: 0 auto;
    height: 1px;
    background-color: white;
    width: 50px;
}
.copywrite{
    color: white;
    padding: 1%;
    background-color: #1c2863;
}

@media only screen and (max-width:850px){
    .landing-container{
        width: auto;
        left: 0;
        top: 50%;
    }
    .landing-image{
        width: 100%;
    }
    .game-intros{
        flex-direction: column;
        padding: 6% 10%;
        gap: 47px;
    }
    .intro-detail{
        width: 100%;
        top: 0;
    }
    .intro-block{
        width: auto;
    }
    .co-introductions{
        width: 100%;
        left: 0;
        width: auto;
        padding: 0 10%;
        flex-direction: column;
        gap: 47px;
    }
    .contact-us{
        flex-direction: column;
        gap: 30px;
    }
    .contact-title{
        position: static;
        width: 80%;
    }
    .contact-us form{
        width:80%
    }
    .footer{
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    .footer-links{
        flex-direction: row;
    }
    .header{
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }
    .disclaimer-container{
        width: auto;
    }
    .contact-us{
        width: 80%;
    }
}

/* Terms page */
.container{
    background-color: #e5f0ef;
    padding: 40px 10%;
    position: relative;
}
.container-block{
    z-index: 2;
    position: relative;
}
.container-block h2{
    color: #3425eb;
    font-size: 29px;
}
.container-block p, ul{
    color: #193371;
    font-size: 22px;
}
.play-ground-area {
    position: relative;
    padding: 2rem;
    background: #1a1a1a;
}

.play-game {
    max-width: 940px;
    margin: 0 auto;
    position: relative;
}

.row-center-center{
    display: flex;
    justify-content: center;
    align-items: center;
}

.column-center-center{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.aurora-logo {
    font-size: 26px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
  }
  
  .z-2{
    z-index: 2;
  }
  .z-0{
    z-index: 0;
  }
  strong{
    color: rgb(132, 34, 34);
  }