body {
    margin: 0;
    padding: 0;
}

/* Font style */
p {
    font-size: 24px;
}

h3 {
    margin: 0;
}

/* landing style */
.landing {
    /* width: 100%; */
    height: 800px;
    background-image: url('../image/background2.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
}

.landing-container {
    position: relative;
    height: 70%;
    width: 27%;
    background-color: rgb(177, 222, 147);
    left: 10%;
    top: 20%;
    border-radius: 10%;
    padding: 0px 3%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.landing-container h2 {
    font-size: 32px;
    color: #317c32;
}

.landing-container p {
    font-size: 28px;
    color: #2c9152;
}

.landing-container button {
    font-size: 22px;
    color: #0b9d01;
    background: transparent;
    height: 61px;
    width: 67%;
    border-radius: 32px;
    border: 2px solid #0b9d01;
}

.header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-around;
    /* height: 200px; */
    padding: 10px 0;
}

.text-logo {
    position: relative;
    padding: 16px 20px;
    background-color: #008400;
    border-radius: 36px;
}

.text-logo a {
    text-decoration: none;
}
.text-logo h2{
    margin: 0;
    color: white;
}

.pages-tabs {
    display: flex;
    gap: 20px;
    color: white;
    align-items: center;
    background-color: #c2dccf;
    padding: 0 2%;
    border-radius: 50px;
    position: relative;
}

.contact-us-tab {
    display: flex;
    align-items: center;
    background-color: #b5fa9a;
    color: #2c9152;
    padding: 0 2%;
    border-radius: 50px;
    position: relative;
}

.tab {
    font-family: "Orbitron";
    cursor: pointer;
    color: white;
    text-decoration: none;
}

.tab:hover {
    color: rgb(17, 99, 4);
}

/* overview style */

.about-game {
    background-color: #def9d9;
    color: #317c32;
    position: relative;
}

.reverse {
    background: linear-gradient(0deg, rgba(248, 172, 120, 0.3), rgba(0, 0, 0, 0)) !important;
}

.main-overview {
    display: flex;
    flex-direction: column;
    text-align: left;
    padding: 4% 10%;
    padding-bottom: 0;
}

.main-overview h2 {
    width: 54%;
    font-size: 48px;
}

.main-overview p {
    width: 70%;
}

.game-intros {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 2%;
    padding: 4% 0;
}

.intro-detail {
    width: 25%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2%;
    background: #c6f3b7;
    border-radius: 40px;
}

.intro-detail h3 {
    text-align: left;
    width: 100%;
    font-size: 28px;
}

.intro-detail p {
    text-align: justify;
}

/* Game-gatewary style */
.game-area {
    background-color: #1d5c33;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 80px 0;
    gap: 40px;
    position: relative;
}

.game-image-container {
    width: 60%;
}

.game-image-container img {
    width: 100%;
    object-fit: cover;
}

.start {
    width: 20%;
    height: 50px;
    background: none;
    border: 1px solid white;
    color: white;
    border-radius: 40px;
}

.start:hover {
    background-color: white;
    color: #11542f;
}

/* company section style */
.about-company {
    position: relative;
    background-color: #b9ffeb;
    padding: 8% 0;
}

.co-introductions {
    display: flex;
    width: 100%;
    flex-direction: row;
    align-items: stretch;
    justify-content: space-around;
    height: 100%;
}

.intro-block {
    width: 30%;
    width: 24%;
    padding: 3% 3%;
    background-color: #98d9ac;
    border-radius: 40px;
    color: #317c32;
}

.intro-block h2 {
    color: #317c32;
    z-index: 1;
    font-size: 32px;
}

/* disclaimer & license style */
.disclaimer-license {
    /* text-align: center; */
    padding: 4% 0;
    background-color: #1d5c33;
    position: relative;
    display: flex;
}

.image-container {
    width: 40%;
    position: relative;
    display: flex;
}
.disclaimer-container p{
    color: white;
}
#image2 {
    width: 84%;
    object-fit: cover;
}

.image-container img {
    position: relative;
    border-radius: 50px;
}

.disclaimer-container {
    width: 55%;
    padding: 1% 4%;
}

.disclaimer-license h2 {
    color: #ba3a3a;
    font-size: 50px;
}

/* badge style */
.badges {
    padding: 30px 0;
    display: flex;
    justify-content: space-around;
    align-items: center;
    background-color: #11542f;
    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;
    align-items: center;
    justify-content: flex-end;
    background-color: #1a1a1a;
    color: azure;
    padding: 5% 10%;
    position: relative;
    background-image: url('../image/background6.jpg');
    background-size: cover;
    background-position: center;
}

.contact-us form {
    padding: 10% 2%;
    border-radius: 55px;
    display: flex;
    flex-direction: column;
    width: 50%;
    gap: 15px;
    /* align-items: flex-end; */
    background-color: #f3f2ed;
    color: #1d5c33;
}

.h-70 {
    height: 70% !important;
}

.h-120 {
    height: 170%;
}

.h-50 {
    height: 50%;
}

form input {
    height: 40px;
    border: 1px solid #5da95d;
    border-radius: 22px;
    color: #1d5c33;
    padding: 0 2%;
}

form label {
    color: #1d5c33;
}

textarea {
    height: 107px;
    width: 100%;
    border: 1px solid #5da95d;
    border-radius: 22px;
}

form * {
    background: none;
    color: white;
    /* box-shadow: 1px 1px 1px 1px blue; */
}

form h2 {
    margin: 0;
    padding: 3% 0;
    font-size: 39px;
    color: #1d5c33;
}

form button {
    padding: 15px;
    width: 100%;
    color: white;
    background-color: #1d5c33;
    border-radius: 22px;
    font-size: 18px;
    border: none;
}

form button:hover {
    background-color: #366948;
}

/* dec line */
.dec-line {
    background-color: #1a1a1a;
    text-align: center;
}

/* footer style */
.footer {
    display: flex;
    flex-direction: row;
    padding: 40px 0;
    background-color: #11542f;
    justify-content: space-around;
}

.footer-left {
    display: flex;
    flex-direction: column;
    width: 45%;
    /* padding: 4% 3%; */
    justify-content: space-evenly;
}

.footer-logo {
    font-size: 43px;
    color: #f3f3f3;
}

.footer-disclaimer {
    text-align: center;
    color: white;
    padding: 0 4%;
}

.footer-right {
    width: 45%;
}

.footer-form {
    display: flex;
    flex-direction: column;
    /* justify-content: center; */
    gap: 20px;
    padding-bottom: 10%;
    color: white;
}
.footer-form input{
    height: 40px;
    width: 62%;
    margin: 0;
    padding: 0;
    background: none;
    border: 1px solid #ffffff;
    border-radius: 40px;
    padding: 0 10px;
    color: white;
}
.footer-form button{
    width: 63%;
    height: 40px;
    border-radius: 40px;
    border: none;
}
.footer-form button:hover{
    background-color: #1a8249;
}
.footer-form h2{
    font-size: 34px;
}
.footer-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    /* padding: 0 30px; */
    gap: 10px;
    color: #ffffff;
}

.footer-links a {
    cursor: pointer;
    text-decoration: none;
    color: #ffffff;
}

.footer-links a:hover {
    color: #51c3fc;
}

.underline {
    margin: 0 auto;
    height: 1px;
    background-color: white;
    width: 50px;
}

.copywrite {
    color: white;
}

@media only screen and (max-width:970px) {
    .landing{
        padding: 0 2%;
    }
    .landing-container{
        width: auto;
        left: 0;
    }
    .pages-tabs{
        padding: 2% 2%;
    }
    .contact-us-tab{
        display: none;
    }
    .disclaimer-license{
        flex-direction: column;
    }
    .disclaimer-container{
        width: auto;
    }
    .image-container{
        display: flex;
        justify-content: center;
        width: auto;
    }
    .intro-block{
        width: auto;
    }
    .main-overview h2{
        width: auto;
    }
    .main-overview p{
        width: auto;
    }
    .game-intros {
        flex-direction: column;
        padding: 3% 10%;
        gap: 25px;
    }

    .intro-detail {
        width: 100%;
    }
    .co-introductions {
        flex-direction: column;
        width: auto;
        gap: 20px;
        padding: 0 10%;
    }

    .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;
    }
    .footer-left{
        align-items:center;
        width: auto;
    }
    .footer-form input, .footer-form button{
        width: auto;
    }
}

/* Terms page */
.container {
    background-color: #95bb9d;
    padding: 40px 10%;
    position: relative;
}

.container-block {
    z-index: 2;
    position: relative;
}

.container-block h2 {
    color: #006414;
}

.container-block p,
ul {
    color: #2c9152;
}

.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;
}

.z-2 {
    z-index: 2;
}

.z-0 {
    z-index: 0;
}

strong {
    color: rgb(132, 34, 34);
}