@import "reset.css";

body{
    font-family: Gill Sans, sans-serif;
    color: white;
    background: #31324E;
}

/*header*/
.wrapper{
    height: 100%;
    max-width: 90%;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

.container{
	width: 100%;
}

.head_bg{
    background: #3D3F62;
}

.menu_items{
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
}
.menu_items a {
    color: #fff;
    text-decoration: none;
}

.item_m{
    display: inline-flex;
    align-items: center;
}

.menu ul{
    display: inline-flex;
}

.menu li{
    list-style: none;
    padding: 15px 10px;
    border-radius: 6px;
}

.menu li:hover{
    background: #31324E;
    cursor: pointer;
}

.btn{
    display: inline-flex;
    column-gap: 20px;
}

.btn a{
    text-decoration: none;
    color: white;
}

.logo{
    height: 90px;
    width: 100px;
}

.logo img{
    width: 100%;
}

.mob_btn{
    position: absolute;
    visibility: hidden;
    right: 20px;
}

.close{
    right: 42px;
}

.btn a{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 170px;
    height: 45px;
    background: #31324E;
    border-radius: 6px;
}

.btn a:hover{
    background: #3D3F62;
    border: 2px white solid;
}


/*content*/

.content{
    max-width: 1100px;
    margin: 0 auto;
}
.content h1{
    font-size: 45px;
}

.content h2{
    font-size: 40px;
}

.content h3{
    font-size: 35px;
}

.content p{
    margin: 20px 0;
}

.content h1, h2, h3{
    margin: 25px 0;
}

.content ul{
    list-style: inside;
}

.content a{
    color: #F0A800;
}

.game-items{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    height: auto;
    padding: 50px 0;
}

.item{
    margin: 5px 5px;
}

.bg-item{
    background: black;
    position: absolute;
    height: 150px;
    width: 150px;
    z-index: 9;
    overflow: hidden;
    opacity: 0;
    border-radius: 6px;
}

.game_btn{
    height: 100%;
    text-align: center;
    visibility: hidden;
}

.game_btn a{
    color: white;
    width: 70px;
    height: 25px;
    border-radius: 6px;
    text-transform: uppercase;
    font-size: 15px;
    text-decoration: none;
}

.yellow{
    background: #FF7700;
    margin-bottom: 7px;
}

.blue{
    background: #0B699F;
}

.item:hover .bg-item{
    z-index: 100;
    overflow: visible;
    opacity: 0.6;
}

.item:hover .game_btn a{
    display: flex;
    opacity: 1!important;
    z-index: 101;
    position: relative;
    left: 25%;
    top: 25%;
    justify-content: center;
    align-items: center;
    visibility: visible;
}

.item-img{
    z-index: 99;
    height: 150px;
    width: 150px;
    border-radius: 6px;
}


/*footer*/

.bottom_menu{
    text-align: center;
    background: #2A2B43;
    padding: 50px 0;
}

.bottom_menu a{
    text-decoration: none;
    color: #C9C4DE;
}

.bottom_menu a:hover{
    border-bottom: 2px #C9C4DE solid;
    padding: 0 2px;
}

@media (max-width: 1100px){
    .mob_btn{
        z-index: 9999;
    }

    .open{
        visibility: visible;
    }

    .close{
        position: fixed;
    }

    .mob_btn i{
        font-size: 40px;
        color: white;
    }

    .btn{
        visibility: hidden;
        position: fixed;
        z-index: 9999;
        display: flex;
        align-items: center;
   }

   .btn a{
        border: 2px solid white;
   }

   .btn a:hover{
        background: #3D3F62;
   }

    .menu{
        visibility: hidden;
        width: 100%;
        height: 100%;
        z-index: 9999;
        left: 0;
        top: 0;
        bottom: 0;
        background: #31324E;
        position: fixed;
    }

    .menu ul{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding-top: 200px;
    }

    .menu li:hover{
        background: #3D3F62;

    }

    .menu_items{
        position: relative;
        font-size: 20px;
    }

    .item_m{
        position: relative;
    }
}

@media (max-width: 620px){
   
    .btn a{
        width: 100px;
        height: 45px;
        font-size: 12px;
    }

    .bottom_menu{
        font-size: 10px;
    }

@media (max-width: 460px){
}

@media (max-width: 280px){
    .btn{
        right: 55px;
        column-gap: 10px;
    }

    .btn a{
        width: 80px;
        height: 35px;
        font-size: 10px;
    }

    .bottom_menu{
        font-size: 8px;
    }
}